Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name 8chan TOS Agreement
- // @namespace Violentmonkey Scripts
- // @match *://8chan.moe/.static/pages/disclaimer.html
- // @match *://8chan.se/.static/pages/disclaimer.html
- // @match *://8chan.cc/.static/pages/disclaimer.html
- // @grant none
- // @version 1.0
- // @author -
- // @description -
- // ==/UserScript==
- (function termsAgree() {
- const elems = document.querySelectorAll('div.titleWrapper>fieldset.titleFieldset>h1>a');
- if ((elems.length > 0) && (elems.item(0) != null)) {
- elems.item(0).click();
- }
- })();
Advertisement
Add Comment
Please, Sign In to add comment