YouTube Annotation Toggle

YouTube Annotation Toggle

Adds a button that allows you to turn off and on the annotations on Youtube videos

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Ivo Ilić",
  "name": "YouTube Annotation Toggle",
  "description": "Adds a button that allows you to turn off and on the annotations on Youtube videos",
  "version": "1.1",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "64": "icon-64.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "css": [
        "annotation-toggle.css"
      ],
      "js": [
        "jquery-2.1.3.min.js",
        "annotation-toggle.js"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ],
      "run_at": "document_idle"
    }
  ]
}