BitChute Video Source

BitChute Video Source

Shows the video source of the current page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BitChute Video Source",
  "description": "Shows the video source of the current page",
  "version": "0.9",
  "browser_action": {
    "default_popup": "popup/index.html"
  },
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "64": "64.png",
    "128": "128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.bitchute.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "manifest_version": 2
}