Pip Button

Pip Button

A tool to pop out videos from webpages. Adds a customizable button to each video of the webpage

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Pip",
  "name": "Pip Button",
  "description": "A tool to pop out videos from webpages. Adds a customizable button to each video of the webpage",
  "version": "1.2",
  "manifest_version": 2,
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "app/popup/index.html",
    "default_icon": "icons/icon16.png",
    "icons": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png",
      "48": "icons/icon32.png",
      "128": "icons/icon128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/_/chrome/newtab*",
        "*://*/*"
      ],
      "js": [
        "/static/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "icons/*",
    "app/*",
    "app/background/*"
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "options_page": "app/setting/index.html",
  "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon32.png",
    "128": "icons/icon128.png"
  }
}