Ambivid player for Youtube

Ambivid player for Youtube

Creates lights effects around Youtube's video player corresponding to the video content

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Ambivid player for Youtube",
  "description": "Creates lights effects around Youtube's video player corresponding to the video content",
  "version": "2.2.1",
  "homepage_url": "http://ambivid.azurewebsites.net",
  "author": "Jean-Charbel VANNIER",
  "permissions": [
    "http://ambivid.azurewebsites.net",
    "declarativeContent"
  ],
  "page_action": {
    "default_title": "Ambivid"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "player.css"
      ],
      "js": [
        "Ambivid.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}