Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Boards list
- // @namespace http://2ch.hk/
- // @version 0.1
- // @description Some text
- // @author You
- // @match *://2ch.hk/*
- // @grant unsafeWindow
- // @grant window.close
- // @grant GM_getValue
- // @grant GM_setValue
- // @run-at document-idle
- // ==/UserScript==
- (function() {
- 'use strict';
- var nav = document.getElementsByClassName("adminbar__boards desktop");
- nav[0].style.display = "none";
- var div = document.getElementsByClassName("desktop adminbar adminbar-bottom");
- div = div[0].cloneNode(true);
- var headers = document.getElementsByTagName('header');
- headers[0].insertBefore(div, document.getElementsByClassName("logo")[0]);
- })();
Advertisement
Add Comment
Please, Sign In to add comment