Bandwidth Saver for YouTube™

Bandwidth Saver for YouTube™

Automatically set YouTube™ quality to lowest possible for each video to save bandwidth for slow connections and/or small datacaps.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bandwidth Saver for YouTube™",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "Automatically set YouTube™ quality to lowest possible for each video to save bandwidth for slow connections and/or small datacaps.",
  "permissions": [
    "http://*.youtube.com/*"
  ],
  "icons": {
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.youtube.com/*",
        "https://*.youtube.com/*"
      ],
      "js": [
        "scripts/main.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "scripts/war.js"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  }
}