Videogamma ambilight effect

Videogamma ambilight effect

Add cool ambilight effects for html5 videos .Designed for use with YouTube™ .

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Videogamma ambilight effect",
  "short_name": "VAE",
  "version": "0.0.5",
  "manifest_version": 2,
  "description": "Add cool ambilight effects for html5 videos .Designed for use with YouTube™ .",
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "omnibox": {
    "keyword": "Videogamma ambilight effect"
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/19x19.png",
      "38": "icons/38x38.png"
    },
    "default_title": "Videogamma ambilight effect",
    "default_popup": "browseraction/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "*://*/*.*",
        "file:///*/*.*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "main.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "<all_urls>",
    "*://*/*.*",
    "storage"
  ]
}