8kun NSFW Remover

Removes NSFW boards from the board list on 8chan.

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

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

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        8kun NSFW Remover
// @description Removes NSFW boards from the board list on 8chan.
// @include     /^https?://8kun\.top/boards.html$/
// @include        https://8kun.top/*
// @include        http://h.8kun.top/*
// @include        http://8kun.top/*
// @license     GPLv3
// @grant       none
// @version 0.0.1.20200125193427
// @namespace https://greasyfork.org/users/438347
// ==/UserScript==

window.addEventListener ("load", Greasemonkey_main, false);

function Greasemonkey_main(){
  document.getElementById('search-sfw-input').checked = true;
  if(document.getElementById('search-sfw-input').checked = true){
    document.getElementById('search-submit').click();
  }
}