YouTube Clickbait-Buster

YouTube Clickbait-Buster

Check whether it's worth watching a video before watching. Peek content, description, comments, full-size thumbnail and full titles.

Merlin
Additional files are visible only to premium users

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"
}