EveryTube

EveryTube

Populates your YouTube Subscriptions page with content from other video platforms. Currently supports Bitchute and Odysee.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "EveryTube",
  "description": "Populates your YouTube Subscriptions page with content from other video platforms. Currently supports Bitchute and Odysee.com.",
  "version": "0.2.6",
  "icons": {
    "128": "images/icon-128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "cookies",
    "unlimitedStorage",
    "history",
    "storage"
  ],
  "host_permissions": [
    "https://www.youtube.com/*",
    "https://www.odysee.com/*",
    "https://odysee.com/*",
    "https://www.bitchute.com/",
    "https://lbry.tv/",
    "https://lbry.tv/$/following",
    "https://api.lbry.tv/*",
    "https://api.lbry.com/*"
  ],
  "manifest_version": 3
}