Files
return-youtube-dislike/Extensions/combined/manifest-safari.json
T
Anarios e500088e65 Prepare 4.0.5 Firefox update and Shorts fixes
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.
2026-09-06 12:51:12 +02:00

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"]
}