Video Adjust for Netflix

Video Adjust for Netflix

Easily adjust the brightness, saturation, and contrast of Netflix streams!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Video Adjust for Netflix",
  "version": "1.5.0",
  "manifest_version": 2,
  "description": "Easily adjust the brightness, saturation, and contrast of Netflix streams!",
  "homepage_url": "http://stephenr.co.uk/video-adjust-netflix",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "*://*.netflix.com/*"
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "page_action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    },
    "default_title": "Video Adjust",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*"
      ],
      "css": [
        "css/inject.css"
      ],
      "js": [
        "vendor/jquery/jquery-2.1.3.min.js",
        "js/inject.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  }
}