Files
return-youtube-dislike/Extensions/combined/manifest-chrome.json
T
Dmitrii Selivanov 40fda6dd32 Advanced stats for patreon supporters (#1222)
* auth works

* Works after review.

* switched to auth flow

* all works well in chrome

* all works well in chrome and firefox

* translations harmonized

* translations harmonized

* website translations

* Translations harmonized.

* Everything kinda works

* Almost works

* all works

* all works

* all works #2

* Streamline premium analytics range handling

* Restore premium analytics selection flow

* Fix analytics zoom interactions

* Add per-section expansion controls to premium analytics

* Adjust map legend visibility for premium analytics

* Add missing country synonyms for premium map

* Remove legacy premium badge overlay

* Polish premium analytics controls for light theme

* Refresh map legend when toggling sections

* Improve light-mode styling for range selectors

* Fix map mode switching regression

* Fix for panel expand

* Typo fix

* webpack fix

* before next steps.

* split, zero-buckets

* bucket size indicated on UI

* all works

* first/last toggle

* breadcrumbs

* release
2025-10-20 18:43:06 +02:00

65 lines
1.2 KiB
JSON

{
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDesc__",
"default_locale": "en",
"version": "__RYD_VERSION__",
"manifest_version": 3,
"background": {
"service_worker": "ryd.background.js"
},
"icons": {
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"host_permissions": [
"*://*.youtube.com/*"
],
"permissions": [
"storage"
],
"optional_permissions": [
"identity"
],
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://youtube.com/*",
"*://www.youtube.com/*",
"*://m.youtube.com/*"
],
"exclude_matches": [
"*://*.music.youtube.com/*"
],
"js": [
"ryd.content-script.js"
],
"css": [
"content-style.css"
]
}
],
"externally_connectable": {
"matches": [
"*://*.youtube.com/*"
]
},
"web_accessible_resources": [
{
"resources": [
"ryd.script.js",
"menu-fixer.js"
],
"matches": [
"*://*.youtube.com/*"
]
}
],
"options_ui": {
"page": "popup.html",
"open_in_tab": false
}
}