您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects from any of EmbedEZ's domains (eg. tiktokez.com, instagramez.com) to the real deal (eg. tiktok.com, instagram.com)
// ==UserScript== // @name Auto-Redirect For EmbedEZ // @namespace http://tampermonkey.net/ // @version 2 // @description Redirects from any of EmbedEZ's domains (eg. tiktokez.com, instagramez.com) to the real deal (eg. tiktok.com, instagram.com) // @author Samidy // @match *://embedez.com/* // @run-at document-end // @grant none // @icon https://files.catbox.moe/tebjy7.png // @license MIT // ==/UserScript== (()=>{try{let u=new URL(decodeURIComponent(new URL(location.href).searchParams.get('q')));/(\.|^)(instagram\.com|x\.com|twitter\.com|tiktok\.com|ifunny\.co|reddit\.com|snapchat\.com|facebook\.com|bilibili\.com|imgur\.com|threads\.net|weibo\.com)$/.test(u.hostname.toLowerCase())&&location.replace(u.href)}catch{}})();