A multi-browser addon / extension for multiple streaming providers which redirects directly to the source video.
Introduction 📝 • Installation 📥 • Features ✨ • Supported Websites 📜 • Building 🛠️ • Settings ⚙️ • License ⚖
This addon replaces the video player from this sides with the native player build-in into the browser or redirects directly to the source video. This has the advantage, that no advertising or popups are shown when trying to interact with the video (playing, skipping, ...) or some sites are showing them even if you do nothing. Additionally, this enables you to download the video by right-clicking it and just choose the download option.
The best way to install the extension are the official browser extension stores:
stream-bypass-<version>-mv2.zip from the latest release and unzip it (e.g. with 7zip)about:debugging#/runtime/this-firefox in the address barLoad Temporary Add-on... button and choose the manifest.json file in the unzipped directoryAs nearly every browser other than Firefox is based on Chromium, this should be the same for most of them
stream-bypass-<version>-mv3.zip from the latest release and unzip it (e.g. 7zip)chrome://extensions in the address barLoad unpacked and choose the unzipped directory| Feature | Firefox (mv2) | Chrome (mv3) | Firefox for Android (mv2) |
|---|---|---|---|
| Replace site-speicifc video player with browser native video player | ✔ | ✔ | ✔ |
| Support websites that are accessed via a redirect | ✔ | ✖ | ✔ |
| Open video in mpv (with ff2mpv) | ✔ | ✔ | ✖ |
| Site | Firefox & Firefox for Android (mv2) | Chrome & Chromium based (mv2) |
|---|---|---|
| dropload.io | ✔ | ✔ |
| doodstream.com / dood.pm | ✔ | ⚠ (redirect probably required) |
| filemoon.to | ✔ | ✔ |
| goodstream.uno | ✔ | ✔ |
| kwik.cx | ✔ | ✔ |
| loadx.ws | ✔ | ✖ (background request always required) |
| luluvdo.com | ✔ | ✖ (background request always required) |
| mixdrop.co | ✔ ️ | ✔ |
| mp4upload.com | ✔ | ✔ |
| newgrounds.com | ✔ | ✔ |
| streama2z.com | ✔ | ✖ (redirect always required) |
| streamtape.com | ⚠ (correct video url can't always be extract, retrying/reloading the page might fix it) | ⚠ (correct video url can't always be extract, retrying/reloading the page might fix it) |
| streamzz.to / streamz.ws | ✔ | ✔ |
| supervideo.tv | ✔ | ✔ |
| upstream.to | ✔ | ✔ |
| vidmoly.to | ✔ | ✔ |
| vidoza.net | ✔ | ✔ |
| voe.sx | ✔ | ✖ (redirect always required) |
| vupload.com | ✔ | ✔ |
This table might not be 100% accurate, it isn't actively monitored if the addon works for every website!
Some sites put much effort in obfuscating their code / how they receive the video stream so that it simply cost too much time for me to reverse engineer it and find out how to bypass the native video player of the site.
If you want to build the addon from source and not using the way described in installation, follow the instructions.
Requirements:
npm installed.If the requirements are satisfied, you can continue with the following commands:
# install all dependencies
$ npm i
# build the extension and start it in a new firefox instance
$ npm run dev:firefox
# build the extension with optimizations to the .output/firefox-mv2 directory
$ npm run build:firefox
You can omit the :firefox suffix, then it's built for Chrome.
If you want to use the addon in Chromium or any browser which is based on it, follow the steps in the manual installation. When using firefox, use the following:
about:debugging in the browser's address bar.Temporary Extensions, click Load Temporary Add-on.You reach the settings by pressing the tree dots (⋮) in the top right corner of the extension popup.
You can enable or disabled for which hosts the extension should redirect.
ff2mpv allows you to play streams directly in mpv instead of the browser. You can enable or disable this behavior.
Install manuallyff2mpv.json you created:Firefox: Add {55dd42e8-3dd9-455a-b4fe-86664881b10c} to allowed_extensions:
"allowed_extensions": [
"[email protected]",
"{55dd42e8-3dd9-455a-b4fe-86664881b10c}"
]
Chrome/Chromium: - Go To: Settings -> Extensions - Click on Details of the Stream Bypass extension and copy the ID - Add chrome-extension://ddfpfjomnakfckhmilacnbokdaknamdb/ to allowed_origins:
"allowed_origins": [
"chrome-extension://ephjcajbkgplkjmelpglennepbpmdpjg/",
"chrome-extension://ddfpfjomnakfckhmilacnbokdaknamdb/"
]
This project is licensed under the MIT License - see the LICENSE file for more details.