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__",
"short_name": "no-clickbait-for-yt",
"default_locale": "en",
"version": "0.0.1",
"description": "__MSG_extensionDescription__",
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*",
"*:\/\/m.youtube.com\/*"
],
"js": [
"js\/cs.js"
]
}
],
"background": {
"service_worker": "js\/background.js"
},
"action": {
"default_icon": {
"16": "images\/16.png",
"24": "images\/24.png",
"32": "images\/32.png",
"48": "images\/48.png",
"64": "images\/64.png",
"128": "images\/128.png"
},
"default_title": "No Clickbait for YouTube",
"default_popup": "popup.html"
},
"icons": {
"16": "images\/16.png",
"24": "images\/24.png",
"32": "images\/32.png",
"48": "images\/48.png",
"64": "images\/64.png",
"128": "images\/128.png"
},
"permissions": [
"storage",
"declarativeNetRequestWithHostAccess",
"scripting"
],
"host_permissions": [
"*:\/\/www.youtube.com\/*",
"*:\/\/m.youtube.com\/*",
"*:\/\/i.ytimg.com\/*",
"*:\/\/i9.ytimg.com\/*"
]
}