viD

viD

Improves video and audio streaming like you have never seen before..

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "background": {
    "page": "background.html"
  },
  "options_page": "options.html",
  "name": "viD",
  "version": "2.1",
  "description": "Improves video and audio streaming like you have never seen before..",
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "w.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "y.js"
      ],
      "matches": [
        "*://*.youtube.com/user*",
        "*://*.youtube.com/watch*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "s.js",
        "j.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs",
    "cookies",
    "management",
    "notifications",
    "contextMenus"
  ]
}