YouTube™ Scroll Player

YouTube™ Scroll Player

Makes the YouTube video player shrink into the bottom right corner while scrolling.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube™ Scroll Player",
  "description": "Makes the YouTube video player shrink into the bottom right corner while scrolling.",
  "version": "1.0.5",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "mini-floating-player.css"
      ],
      "js": [
        "jquery.js",
        "contentscript.js"
      ],
      "matches": [
        "https://*.youtube.com/*",
        "http://*.youtube.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "arrow-up.png"
  ],
  "manifest_version": 2
}