croxyproxy video stream opener

croxyproxy to open streaming videos outside the proxy

  1. // ==UserScript==
  2. // @name croxyproxy video stream opener
  3. // @name:tr croxyproxy video akışı açıcı
  4. // @namespace http://tampermonkey.net/
  5. // @version 2024-01-14
  6. // @description croxyproxy to open streaming videos outside the proxy
  7. // @description:tr croxyproxy için proxy dışında video akışı açmaya yarar
  8. // @author anonimbiri
  9. // @license MIT
  10. // @match *://*/*
  11. // @icon https://www.google.com/s2/favicons?sz=64&domain=39.161
  12. // @grant none
  13. // ==/UserScript==
  14.  
  15. var list = [
  16. 'streamtape.com',
  17. 'tapenoads.com',
  18. 'doodstream.com',
  19. 'dood.ws',
  20. 'ds2play.com',
  21. 'doodstream.top',
  22. 'd0o0d.com',
  23. 'do0od.com',
  24. 'streamvid.net',
  25. 'wolfstream.tv',
  26. 'vtbe.to',
  27. 'rapidcloud.cc',
  28. 'streamhub.to',
  29. ];
  30.  
  31. window.addEventListener("load", () => {
  32. const urlValue = new URL(document.querySelector('input[name="url"]').value);
  33. if (list.includes(urlValue.hostname)) {
  34. window.location.href = urlValue.href;
  35. }
  36. });