Elli PiP

Elli PiP

Elli PiP lets you watch videos anywhere on your desktop in a separate convenient window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.2",
  "name": "__MSG_name__",
  "description": "Elli PiP lets you watch videos anywhere on your desktop in a separate convenient window.",
  "default_locale": "en",
  "icons": {
    "128": "views/img/logo-d.png"
  },
  "background": {
    "page": "views/index.html"
  },
  "browser_action": {},
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "views/img/*.png"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "views/js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ]
}