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": "__MSG_appName__",
"version": "2.0.0",
"version_name": "2.0.0",
"description": "__MSG_extDescription__",
"default_locale": "en",
"homepage_url": "https:\/\/github.com\/Ahmed\/youtube-audio-mode",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"host_permissions": [
"https:\/\/www.youtube.com\/watch*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"commands": {
"toggle-audio-mode": {
"suggested_key": {
"default": "Alt+Shift+A",
"mac": "Alt+Shift+A",
"windows": "Alt+Shift+A",
"linux": "Alt+Shift+A"
},
"description": "__MSG_toggleCommand__"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/watch*"
],
"js": [
"content.js"
],
"css": [
"overlay.css"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"overlay.css",
"fonts\/Cairo-Variable.ttf",
"_locales\/en\/messages.json",
"_locales\/ar\/messages.json"
],
"matches": [
"https:\/\/www.youtube.com\/*"
]
}
]
}