Hide Labels and End Cards on Youtube

Hide Labels and End Cards on Youtube

With this extension, you can hide end cards that appear at the end of a youtube video. Labels on the video can also be hidden.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hide Labels and End Cards on Youtube",
  "short_name": "Hide Labels and End Cards on Youtube",
  "version": "1.0.1",
  "description": "With this extension, you can hide end cards that appear at the end of a youtube video. Labels on the video can also be hidden.",
  "permissions": [
    "activeTab",
    "storage",
    "https://www.youtube.com/*"
  ],
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "./src/popup/popup.html",
    "default_icon": {
      "16": "./src/images/icon16.png",
      "32": "./src/images/icon32.png",
      "48": "./src/images/icon48.png",
      "128": "./src/images/icon128.png"
    }
  },
  "background": {
    "persistent": true,
    "page": "./src/background/bg.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "all_frames": true,
      "js": [
        "./src/content/contentScript.min.js"
      ]
    }
  ],
  "icons": {
    "16": "./src/images/icon16.png",
    "32": "./src/images/icon32.png",
    "48": "./src/images/icon48.png",
    "128": "./src/images/icon128.png"
  }
}