Video Tuner

Video Tuner

Why tune your piano when you could tune youtube instead?

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Video Tuner",
  "short_name": "vidtuner",
  "version": "0.3.1",
  "manifest_version": 2,
  "description": "Why tune your piano when you could tune youtube instead?",
  "homepage_url": "https://sites.google.com/view/videotuner/",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_icon": {
      "19": "icons/icon19.png",
      "38": "icons/icon38.png",
      "48": "icons/icon48.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "exclude_matches": [
        "https://plus.google.com/hangouts/*",
        "https://hangouts.google.com/hangouts/*",
        "https://meet.google.com/*",
        "https://teamtreehouse.com/*",
        "http://www.hitbox.tv/*"
      ],
      "css": [
        "popup.css"
      ],
      "js": [
        "jungle.js",
        "content_script.js",
        "popup.js"
      ],
      "run_at": "document_end"
    }
  ]
}