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_extension_name__",
"description": "__MSG_extension_description__",
"version": "1.0.0",
"default_locale": "en",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png"
},
"default_title": "__MSG_extension_name__"
},
"background": {
"service_worker": "background\/service-worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/youtube.com\/*"
],
"js": [
"content\/index.js"
],
"css": [
"styles\/content.css"
],
"run_at": "document_idle"
}
],
"permissions": [
"storage",
"identity",
"contextMenus",
"scripting"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/youtube.com\/*",
"https:\/\/connapi.youtube-m.com\/*",
"https:\/\/www.youtube-m.com\/*"
],
"oauth2": {
"client_id": "854093933033-arhk5vtimh1jf05kj04srmgj2gfseqq6.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/youtube.readonly",
"openid",
"email",
"profile"
]
},
"web_accessible_resources": [
{
"resources": [
"icons\/*",
"styles\/*"
],
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/youtube.com\/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"options_page": "options.html",
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "__MSG_shortcut_open_popup__"
},
"assign_category": {
"suggested_key": {
"default": "Alt+C",
"mac": "Alt+C"
},
"description": "__MSG_shortcut_assign_category__"
}
}
}