mirror of
https://github.com/Anarios/return-youtube-dislike.git
synced 2026-09-12 10:22:10 +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.
45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"name": "__MSG_extensionName__",
|
|
"description": "__MSG_extensionDesc__",
|
|
"default_locale": "en",
|
|
"version": "__RYD_VERSION__",
|
|
"manifest_version": 2,
|
|
"incognito": "not_allowed",
|
|
"background": {
|
|
"scripts": ["ryd.background.js"]
|
|
},
|
|
"icons": {
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"permissions": ["activeTab", "*://*.youtube.com/*", "storage", "*://returnyoutubedislikeapi.com/*", "identity"],
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "{762f9885-5a13-4abd-9c77-433dcd38b8fd}",
|
|
"strict_min_version": "140.0",
|
|
"data_collection_permissions": {
|
|
"required": ["personallyIdentifyingInfo", "browsingActivity", "websiteContent", "websiteActivity"],
|
|
"optional": ["authenticationInfo"]
|
|
}
|
|
}
|
|
},
|
|
|
|
"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",
|
|
"open_in_tab": false
|
|
},
|
|
"web_accessible_resources": ["menu-fixer.js"]
|
|
}
|