Ambient YouTube

Ambient YouTube

Provides an ambient experience while watching YouTube

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Ambient YouTube",
  "short_name": "ambientyoutube",
  "version": "1.2.1",
  "default_locale": "en",
  "description": "Provides an ambient experience while watching YouTube",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "author": "Polymer Mallard",
  "homepage_url": "https://www.polymermallard.com",
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "shared/image/*",
    "shared/image/yt-ambientyoutube-button.svg"
  ],
  "browser_action": {
    "default_popup": "panels/popup/index.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://*.youtube.com/",
        "https://*.youtube.com/*",
        "https://www.youtube.com/embed/*"
      ],
      "js": [
        "shared/script/vendor/color-thief.js",
        "shared/script/app/helpers.js",
        "shared/script/app/app.js"
      ],
      "css": [
        "shared/style/app/youtube.css",
        "shared/style/app/plugin.css"
      ],
      "run_at": "document_end"
    }
  ]
}