croxyproxy video stream opener

croxyproxy to open streaming videos outside the proxy

目前為 2023-12-09 提交的版本,檢視 最新版本

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

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址