Avoid twitter

an easier way to block twitter.

// ==UserScript==
// @name         Avoid twitter
// @namespace    https://apap04.com
// @version      0.4.1
// @description  an easier way to block twitter.
// @author       [email protected]
// @match        twitter.com
// @match        developer.twitter.com
// @match        twitter.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var b = document.querySelector('body');
    var rroot = document.getElementById("react-root")
    var p = document.createElement('p');

    b.removeChild(rroot);
    b.style = "display: grid; justify-content: center; align-content: center; font-family: 'Roboto'; overflow: hidden; background-color: #000;"
    p.style = "color: white; font-size: 9em;"
    p.innerText = "bad site";
    b.appendChild(p);
})()

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址