Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouTube Music Supporter",
"version": "1.0.0",
"description": "Transform YouTube into a powerful music player with visualizer, lyrics, bandwidth tracking, and more!",
"icons": {
"16": "img\/icons\/icon16.png",
"48": "img\/icons\/icon48.png",
"128": "img\/icons\/icon128.png"
},
"permissions": [
"storage",
"unlimitedStorage",
"declarativeNetRequest",
"tabs",
"scripting",
"alarms"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "js\/background.js"
},
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "img\/icons\/icon16.png",
"48": "img\/icons\/icon48.png"
},
"default_title": "YouTube Music Supporter"
},
"options_ui": {
"page": "pages\/options.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*",
"*:\/\/music.youtube.com\/*",
"*:\/\/m.youtube.com\/*"
],
"exclude_matches": [
"*:\/\/www.youtube.com\/embed\/*",
"*:\/\/www.youtube.com\/embed?*"
],
"js": [
"js\/content.js",
"js\/visualizer.js",
"js\/lyrics.js",
"js\/controls.js"
],
"css": [
"css\/content.css",
"css\/visualizer.css",
"css\/lyrics.css"
],
"run_at": "document_start"
},
{
"matches": [
"<all_urls>"
],
"exclude_matches": [
"*:\/\/www.youtube.com\/*",
"*:\/\/music.youtube.com\/*",
"*:\/\/m.youtube.com\/*"
],
"js": [
"js\/embedded.js"
],
"css": [
"css\/embedded.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"js\/injected.js",
"css\/themes\/*.css",
"css\/focus-mode.css",
"css\/embedded.css",
"img\/*"
],
"matches": [
"<all_urls>"
]
}
],
"commands": {
"toggle-extension": {
"suggested_key": {
"default": "Ctrl+Shift+M",
"mac": "Command+Shift+M"
},
"description": "Toggle YouTube Music Supporter"
},
"toggle-visualizer": {
"suggested_key": {
"default": "Ctrl+Shift+V",
"mac": "Command+Shift+V"
},
"description": "Toggle Audio Visualizer"
},
"toggle-lyrics": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "Command+Shift+L"
},
"description": "Toggle Lyrics Display"
}
}
}