Files
return-youtube-dislike/Extensions/combined/manifest-firefox.json
T
Anarios c8f23b2c7d #1074 - Extension is freezing some Youtube pages
#846 - Infinite Recursion on Some Video
2024-08-26 11:42:20 +02:00

58 lines
1.1 KiB
JSON

{
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDesc__",
"default_locale": "en",
"version": "__RYD_VERSION__",
"manifest_version": 2,
"background": {
"scripts": [
"ryd.background.js"
]
},
"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",
"open_in_tab": false
},
"web_accessible_resources": [
"menu-fixer.js"
]
// uncomment this section for local storage to work in firefox locally,
// ,"browser_specific_settings": {
// "gecko": {
// "id": "addon@example.com",
// "strict_min_version": "42.0"
// }
// }
}