mirror of
https://github.com/Alvin-Zilverstand/return-youtube-dislike.git
synced 2026-09-12 09:58:20 +02:00
c8f23b2c7d
#846 - Infinite Recursion on Some Video
58 lines
1.1 KiB
JSON
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"
|
|
// }
|
|
// }
|
|
}
|