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": "YouTube Clickbait Remover",
"short_name": "Clickbait Remover",
"default_locale": "en",
"version": "1.0.0",
"description": "Remove clickbait from YouTube! Replace flashy thumbnails with actual video frames and normalize sensationalized titles.",
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*",
"*:\/\/m.youtube.com\/*"
],
"js": [
"src\/content\/youtube.js"
]
}
],
"background": {
"service_worker": "src\/background\/background.js"
},
"action": {
"default_icon": {
"16": "assets\/icons\/icon16.png",
"32": "assets\/icons\/icon32.png"
},
"default_title": "YouTube Clickbait Remover",
"default_popup": "src\/popup\/popup.html"
},
"icons": {
"16": "assets\/icons\/icon16.png",
"32": "assets\/icons\/icon32.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"permissions": [
"storage",
"declarativeNetRequestWithHostAccess",
"scripting"
],
"host_permissions": [
"*:\/\/www.youtube.com\/*",
"*:\/\/m.youtube.com\/*",
"*:\/\/i.ytimg.com\/*",
"*:\/\/i9.ytimg.com\/*"
]
}