croxyproxy video stream opener

croxyproxy to open streaming videos outside the proxy

当前为 2024-01-06 提交的版本,查看 最新版本

  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-06
  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. 'streamvid.net',
  24. 'wolfstream.tv',
  25. 'vtbe.to',
  26. 'rapidcloud.cc',
  27. 'streamhub.to',
  28. ];
  29.  
  30. window.addEventListener("load", () => {
  31. const urlValue = new URL(document.querySelector('input[name="url"]').value);
  32. if (list.includes(urlValue.hostname)) {
  33. window.location.href = urlValue.href;
  34. }
  35. });