您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirect Terabox video links to embed links
当前为
- // ==UserScript==
- // @name Terabox video link unlock (redirect to embed)
- // @author Rust1667
- // @version 1.0
- // @description Redirect Terabox video links to embed links
- // @match https://*.terabox.com/*
- // @match https://*.mirrobox.com/*
- // @match https://*.nephobox.com/*
- // @match https://*.freeterabox.com/*
- // @match https://*.1024tera.com/*
- // @match https://*.4funbox.co/*
- // @match https://*.4funbox.com/*
- // @match https://*.terabox.app/*
- // @match https://*.terabox.fun/*
- // @match https://*.momerybox.com/*
- // @match https://*.teraboxapp.com/*
- // @match https://*.tibibox.com/*
- // @match https://*.gibibox.com/*
- // @grant none
- // @namespace https://greasyfork.org/users/980489
- // ==/UserScript==
- (function() {
- 'use strict';
- if (window.location.href.includes('/sharing/link?')) {
- window.location.assign(window.location.href.replace('/sharing/link?', '/sharing/embed?'));
- }
- })();