croxyproxy to open streaming videos outside the proxy
目前為
// ==UserScript==
// @name croxyproxy video stream opener
// @name:tr croxyproxy video akışı açıcı
// @namespace http://tampermonkey.net/
// @version 2023-12-09
// @description croxyproxy to open streaming videos outside the proxy
// @description:tr proxy dışında video akışı açmak için croxyproxy
// @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',
'streamvid.net',
'wolfstream.tv',
'vtbe.to',
'rapidcloud.cc'
];
window.addEventListener("load", () => {
const urlValue = new URL(document.querySelector('input[name="url"]').value);
if (list.includes(urlValue.hostname)) {
window.location.href = urlValue.href;
}
});