Avoid twitter

an easier way to block twitter.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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);
})()