mirror of
https://github.com/Alvin-Zilverstand/return-youtube-dislike.git
synced 2026-09-12 09:58:20 +02:00
e500088e65
Add Firefox data consent, repair contributor sign-in, and introduce optional Hide clutter buttons. Harden video navigation, voting, and action layouts with shared browser regression coverage and reproducible release packaging.
33 lines
833 B
JSON
33 lines
833 B
JSON
{
|
|
"name": "__MSG_extensionName__",
|
|
"description": "__MSG_extensionDesc__",
|
|
"default_locale": "en",
|
|
"version": "__RYD_VERSION__",
|
|
"manifest_version": 2,
|
|
"background": {
|
|
"scripts": ["ryd.background.js"],
|
|
"persistent": false
|
|
},
|
|
"icons": {
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"permissions": ["activeTab", "*://*.youtube.com/*", "storage", "*://returnyoutubedislikeapi.com/*"],
|
|
"browser_action": {
|
|
"default_popup": "popup.html"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*.youtube.com/*"],
|
|
"exclude_matches": ["*://*.music.youtube.com/*"],
|
|
"run_at": "document_idle",
|
|
"css": ["content-style.css"],
|
|
"js": ["ryd.content-script.js"]
|
|
}
|
|
],
|
|
"options_ui": {
|
|
"page": "popup.html"
|
|
},
|
|
"web_accessible_resources": ["menu-fixer.js"]
|
|
}
|