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__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"homepage_url": "https:\/\/tabplugins.com\/youtube-audio-only-save-data-battery\/",
"version": "1.1.2",
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"commands": {
"toggle-audio-only": {
"suggested_key": {
"default": "Ctrl+Shift+A",
"mac": "Command+Shift+A"
},
"description": "Toggle Audio Only Mode"
},
"toggle-overlay": {
"suggested_key": {
"default": "Ctrl+Shift+O"
},
"description": "Toggle Control Button Visibility"
}
},
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "assets\/icons\/icon16.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"default_title": "YouTube Audio Saver"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content\/content.js"
]
}
],
"background": {
"service_worker": "background\/background.js"
}
}