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": "YouTube Clickbait-Buster",
"version": "2.0.14",
"description": "Check whether it's worth watching a video before watching. Peek content, description, comments, full-size thumbnail and full titles.",
"icons": {
"128": "icon.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*",
"<all_urls>"
],
"js": [
"utils.js",
"YouTube-Clickbait-Buster.js"
],
"all_frames": true
}
],
"background": {
"scripts": [
"YTClickB-Background.js"
],
"service_worker": "YTClickB-Background.js"
},
"web_accessible_resources": [
{
"resources": [
"\/donation.html"
],
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
]
}
],
"options_ui": {
"page": "options-page.html"
},
"action": {
"default_title": "YouTube Clickbait-Buster",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"browser_specific_settings": {
"gecko": {
"id": "{6e4d5b97-0359-431d-8cc2-109701ae89af}"
}
}
}