// ==UserScript== // @name 禁止打开抖音网页版 // @namespace sydney // @version 1.0 // @description 阻止用户访问抖音网页版 // @match https://*/* // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 获取当前网址 var url = window.location.href; // 如果网址包含抖音的域名,就跳转到一个提示页面 if (url.includes("douyin.com")) { window.location.replace("https://so.gushiwen.cn/mingju/juv_0ff8969519ac.aspx"); } })();