croxyproxy video stream opener

croxyproxy to open streaming videos outside the proxy

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         croxyproxy video stream opener
// @name:tr      croxyproxy video akışı açıcı
// @namespace    http://tampermonkey.net/
// @version      2024-01-14
// @description  croxyproxy to open streaming videos outside the proxy
// @description:tr croxyproxy için proxy dışında video akışı açmaya yarar
// @author       anonimbiri
// @license MIT
// @match        *://*/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=39.161
// @grant        none
// ==/UserScript==

var list = [
    'streamtape.com',
    'tapenoads.com',
    'doodstream.com',
    'dood.ws',
    'ds2play.com',
    'doodstream.top',
    'd0o0d.com',
    'do0od.com',
    'streamvid.net',
    'wolfstream.tv',
    'vtbe.to',
    'rapidcloud.cc',
    'streamhub.to',
];

window.addEventListener("load", () => {
    const urlValue = new URL(document.querySelector('input[name="url"]').value);
    if (list.includes(urlValue.hostname)) {
        window.location.href = urlValue.href;
    }
});