uPin

uPin

Pin a YouTube video while the rest of the page scrolls.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "uPin",
  "homepage_url": "http://electricitymachine.com/upin/",
  "description": "Pin a YouTube video while the rest of the page scrolls.",
  "version": "0.0.0.5",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "*://*/*"
  ],
  "browser_action": {
    "default_icon": "19x19.png",
    "default_popup": "upin.html",
    "default_title": "uPin"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.youtube.com/watch?v=*",
        "https://www.youtube.com/watch?v=*"
      ],
      "exclude_matches": [
        "*://*/*results*",
        "*://*/*search_query*"
      ],
      "include_globs": [
        "*youtube.com/watch?v=???????????*"
      ],
      "exclude_globs": [
        "*&list=*",
        "*watch?list=*",
        "*watch?v=*&list=*",
        "*results*",
        "*search_query=*"
      ],
      "css": [
        "upin.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "upin.css"
  ],
  "icons": {
    "16": "16x16.png",
    "19": "19x19.png",
    "32": "32x32.png",
    "38": "38x38.png",
    "48": "48x48.png",
    "128": "128x128.png"
  }
}