阻止用户访问抖音网页版
- // ==UserScript==
- // @name 禁止打开某音网页版
- // @namespace sydney
- // @version 3.0
- // @description 阻止用户访问抖音网页版
- // @match https://www.douyin.com/*
- // @grant none
- // @license MIT
- // ==/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");
- }
- })();