阻止界面加载
// ==UserScript==
// @name 青年大学习
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 青年大学习
// @author ZhijieBin
// @match *://*.douyin.com/*
// @match *://*.amemv.com/*
// @match *://*.toutiao.com/*
// @match *://*.bilibili.com/*
// @match *://*.kuaishou.cn/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.stop(); // 阻止页面加载
document.write('<div style="color: red; font-size: 64px;"></div>'); // 覆盖页面内容
})();