🏠 Home 

禁止打开某音网页版

阻止用户访问抖音网页版


Install this script?
  1. // ==UserScript==
  2. // @name 禁止打开某音网页版
  3. // @namespace sydney
  4. // @version 3.0
  5. // @description 阻止用户访问抖音网页版
  6. // @match https://www.douyin.com/*
  7. // @grant none
  8. // @license MIT
  9. // ==/UserScript==
  10. (function() {
  11. 'use strict';
  12. // 获取当前网址
  13. var url = window.location.href;
  14. // 如果网址包含抖音的域名,就跳转到一个提示页面
  15. if (url.includes("douyin.com")) {
  16. window.location.replace("https://so.gushiwen.cn/mingju/juv_0ff8969519ac.aspx");
  17. }
  18. })();