mirror of
https://github.com/SrIzan10/return-youtube-dislike.git
synced 2026-05-01 10:55:27 +00:00
42 lines
918 B
JSON
42 lines
918 B
JSON
{
|
|
"name": "Return YouTube Dislike",
|
|
"description": "Returns ability to see dislikes",
|
|
"version": "2.0.0.3",
|
|
"manifest_version": 3,
|
|
"background": {
|
|
"service_worker": "ryd.background.js"
|
|
},
|
|
"icons": {
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"host_permissions": ["*://*.youtube.com/*"],
|
|
"permissions": [
|
|
"storage"
|
|
],
|
|
"action": {
|
|
"default_popup": "popup.html"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"*://youtube.com/*",
|
|
"*://www.youtube.com/*",
|
|
"*://m.youtube.com/*"
|
|
],
|
|
"exclude_matches": ["*://*.music.youtube.com/*"],
|
|
"js": ["bundled-content-script.js"],
|
|
"css": ["content-style.css"]
|
|
}
|
|
],
|
|
"externally_connectable": {
|
|
"matches": ["*://*.youtube.com/*"]
|
|
},
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": ["ryd.script.js"],
|
|
"matches": ["*://*.youtube.com/*"]
|
|
}
|
|
]
|
|
}
|