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_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.0.3",
"default_locale": "en",
"icons": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"action": {
"default_popup": "popup\/index.html",
"default_icon": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png"
},
"default_title": "__MSG_actionTitle__"
},
"permissions": [
"storage",
"activeTab",
"contextMenus",
"scripting",
"identity"
],
"host_permissions": [
"*:\/\/www.youtube.com\/*",
"https:\/\/*.firebaseio.com\/*",
"https:\/\/*.googleapis.com\/*",
"https:\/\/firestore.googleapis.com\/*"
],
"oauth2": {
"client_id": "1094562134866-n51hi4vndn7qonqrnp52clfsnupb89a7.apps.googleusercontent.com",
"scopes": [
"openid",
"email",
"profile"
]
},
"background": {
"service_worker": "background\/service-worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"content\/index.js"
],
"css": [
"styles\/content.css"
],
"run_at": "document_idle"
}
],
"options_ui": {
"page": "options\/index.html",
"open_in_tab": true
}
}