2021-12-17 19:57:47 +03:00
|
|
|
{
|
2022-02-18 21:35:05 -06:00
|
|
|
"name": "__MSG_extensionName__",
|
|
|
|
|
"description": "__MSG_extensionDesc__",
|
|
|
|
|
"default_locale": "en",
|
2024-01-15 11:10:35 +03:00
|
|
|
"version": "__RYD_VERSION__",
|
2021-12-17 19:57:47 +03:00
|
|
|
"manifest_version": 2,
|
2026-09-06 12:51:12 +02:00
|
|
|
"incognito": "not_allowed",
|
2021-12-17 19:57:47 +03:00
|
|
|
"background": {
|
2026-09-06 12:51:12 +02:00
|
|
|
"scripts": ["ryd.background.js"]
|
2021-12-17 19:57:47 +03:00
|
|
|
},
|
|
|
|
|
"icons": {
|
|
|
|
|
"48": "icons/icon48.png",
|
2022-04-27 01:14:49 +02:00
|
|
|
"128": "icons/icon128.png"
|
2021-12-17 19:57:47 +03:00
|
|
|
},
|
2026-09-06 12:51:12 +02:00
|
|
|
"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"]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2021-12-17 19:57:47 +03:00
|
|
|
"browser_action": {
|
|
|
|
|
"default_popup": "popup.html"
|
|
|
|
|
},
|
|
|
|
|
"content_scripts": [
|
|
|
|
|
{
|
2026-09-06 12:51:12 +02:00
|
|
|
"matches": ["*://*.youtube.com/*"],
|
|
|
|
|
"exclude_matches": ["*://*.music.youtube.com/*"],
|
2021-12-17 19:57:47 +03:00
|
|
|
"run_at": "document_idle",
|
2026-09-06 12:51:12 +02:00
|
|
|
"css": ["content-style.css"],
|
|
|
|
|
"js": ["ryd.content-script.js"]
|
2021-12-17 19:57:47 +03:00
|
|
|
}
|
2023-03-11 21:56:07 +01:00
|
|
|
],
|
|
|
|
|
"options_ui": {
|
|
|
|
|
"page": "popup.html",
|
|
|
|
|
"open_in_tab": false
|
2024-08-26 11:42:20 +02:00
|
|
|
},
|
2026-09-06 12:51:12 +02:00
|
|
|
"web_accessible_resources": ["menu-fixer.js"]
|
2021-12-17 19:57:47 +03:00
|
|
|
}
|