Terabox video link unlock (redirect to embed)

Redirect Terabox video links to embed links

当前为 2025-03-05 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Terabox video link unlock (redirect to embed)
  3. // @author Rust1667
  4. // @version 1.0
  5. // @description Redirect Terabox video links to embed links
  6. // @match https://*.terabox.com/*
  7. // @match https://*.mirrobox.com/*
  8. // @match https://*.nephobox.com/*
  9. // @match https://*.freeterabox.com/*
  10. // @match https://*.1024tera.com/*
  11. // @match https://*.4funbox.co/*
  12. // @match https://*.4funbox.com/*
  13. // @match https://*.terabox.app/*
  14. // @match https://*.terabox.fun/*
  15. // @match https://*.momerybox.com/*
  16. // @match https://*.teraboxapp.com/*
  17. // @match https://*.tibibox.com/*
  18. // @match https://*.gibibox.com/*
  19. // @grant none
  20. // @namespace https://greasyfork.org/users/980489
  21. // ==/UserScript==
  22.  
  23. (function() {
  24. 'use strict';
  25. if (window.location.href.includes('/sharing/link?')) {
  26. window.location.assign(window.location.href.replace('/sharing/link?', '/sharing/embed?'));
  27. }
  28. })();