您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove TikTok redirect to app store if app is not installed
// ==UserScript== // @name TikTok (remove redirect) // @namespace http://tampermonkey.net/ // @version 2025-08-23 // @description Remove TikTok redirect to app store if app is not installed // @author You // @match https://www.tiktok.com/* // @icon https://www.google.com/s2/favicons?sz=32&domain_url=https%3A%2F%2Fwww.tiktok.com%2F%40undercovertourist%2Fvideo%2F7541576461610781982%3F_t%3DZT-8z7ZyNqWbyH%26_r%3D1 // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; //https://www.tiktok.com/@undercovertourist/video/7541576461610781982?_t=ZT-8z7ZyNqWbyH&_r=1 const params = new URLSearchParams(window.location.search); if (location.protocol && location.host && location.pathname && params.get('_t')) { const url = location.protocol + '//' + location.host + location.pathname; window.location.replace(url); } })();