YouTube Popup

YouTube Popup

Allows turn Youtube player into minimalistic popup, so you can watch movie and still make your job!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.1resigned1",
  "default_locale": "en",
  "author": "Tomasz Pawluczy",
  "icons": {
    "48": "img/icon_48.png"
  },
  "permissions": [
    "contextMenus",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "script/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "script/ytinject.js"
      ]
    },
    {
      "matches": [
        "*://*.youtube.com/embed/*"
      ],
      "js": [
        "script/ytembedinject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "script/pageToPopup.js",
    "script/popupButtons.js",
    "html/popupbuttons.html"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{72b43333-7067-4d6b-b985-7cb78379d289}"
    }
  }
}