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 (with 7zip or something like that)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
- Download
stream-bypass-<version>-mv3.zip
from the latest release and unzip it (with 7zip or something like that)- Go into your browser and type
chrome://extensions
in the address bar- Turn on the developer mode by checking the switch in the top right corner
- Click
Load unpacked
and choose the unzipped directory
Feature | Firefox | Chrome | Firefox for Android |
---|---|---|---|
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 | Chrome & Chromium based |
---|---|---|
dropload.io | β | β |
doodstream.com / dood.pm | βοΈ | β (redirect probably required) |
filemoon.sx | β | β |
goodstream.uno | β | β |
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.me | β | β |
vidoza.net | β (doesn't always work the first time, retrying/reloading the page one or two times fixes it) | β (doesn't always work the first time, retrying/reloading the page one or two times fixes it) |
voe.sx | β | β (redirect always required) |
vupload.com | β | β |
kwik.cx | β | β |
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 installation way, follow the instructions.
Requirements:
npm
installed.If the requirements are satisfied, you can continue with the following commands:
# install all dependencies
$ npm install
# build the extension source to the dist/ directory
$ npm run build
# same as build + more optimizations and browser specific settings at release/
$ npm run release:firefox # or "release:chrome" to create a release for chromium based browsers
If you want to use the addon in Chromium or any browser which is based on it, follow the steps in installation. When using firefox, use the following:
about:debugging
in the browser's address bar.Temporary Extensions
, click Load Temporary Add-on
.ff2mpv is located at this repository: https://github.com/woodruffw/ff2mpv
Steps to get it set up:
Install manually
ff2mpv.json
you created:
{55dd42e8-3dd9-455a-b4fe-86664881b10c}
to allowed_extensions
->
"allowed_extensions": [
"ff2mpv@yossarian.net",
"{55dd42e8-3dd9-455a-b4fe-86664881b10c}"
]
Details
of the Stream Bypass extension and copy the IDchrome-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.