Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_appName__",
"version": "1.0",
"description": "__MSG_shortDesc__",
"default_locale": "en",
"permissions": [
"storage",
"tabs",
"scripting",
"webNavigation"
],
"background": {
"service_worker": ".\/static\/js\/background.js"
},
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"64": "images\/icon64.png",
"128": "images\/icon128.png"
}
},
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"64": "images\/icon64.png",
"128": "images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
".\/static\/js\/contentScript.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"images\/icon16.png",
"images\/icon48.png",
"images\/icon64.png",
"images\/icon128.png",
"images\/rating_star.png",
"images\/rocket.png",
"images\/screenshot.png"
],
"matches": [
"<all_urls>"
]
}
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
]
}