BitchuteVideoDownloader

BitchuteVideoDownloader

Very simple extension containing a button to download the video of a bitchute video page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BitchuteVideoDownloader",
  "version": "0.1",
  "description": "Very simple extension containing a button to download the video of a bitchute video page",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "logo-128.png"
    }
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://www.bitchute.com/video/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}