Inspect and view changes in YouTube Clickbait-Buster source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "YouTube Clickbait-Buster",
"version": "2.0.8",
"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/*"
],
"js": [
"utils.js",
"YouTube-Clickbait-Buster.js"
],
"all_frames": true
}
],
"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"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}