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,
"default_locale": "en",
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"homepage_url": "https:\/\/soitis.dev\/control-panel-for-youtube",
"version": "1.27.0",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"64": "icons\/icon64.png",
"96": "icons\/icon96.png",
"128": "icons\/icon128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
],
"exclude_matches": [
"https:\/\/www.youtube.com\/embed\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
},
{
"world": "MAIN",
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
],
"exclude_matches": [
"https:\/\/www.youtube.com\/embed\/*"
],
"js": [
"page.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/www.youtube.com\/embed\/*",
"https:\/\/www.youtube-nocookie.com\/embed\/*"
],
"js": [
"embed.js"
],
"all_frames": true
}
],
"options_ui": {
"page": "options.html"
},
"action": {
"default_title": "__MSG_extensionName__",
"default_popup": "browser_action.html"
},
"permissions": [
"storage"
]
}