Guest User

Untitled

a guest
May 13th, 2025
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. // ==UserScript==
  2. // @name 8chan TOS Agreement
  3. // @namespace Violentmonkey Scripts
  4. // @match *://8chan.moe/.static/pages/disclaimer.html
  5. // @match *://8chan.se/.static/pages/disclaimer.html
  6. // @match *://8chan.cc/.static/pages/disclaimer.html
  7. // @grant none
  8. // @version 1.0
  9. // @author -
  10. // @description -
  11. // ==/UserScript==
  12. (function termsAgree() {
  13. const elems = document.querySelectorAll('div.titleWrapper>fieldset.titleFieldset>h1>a');
  14. if ((elems.length > 0) && (elems.item(0) != null)) {
  15. elems.item(0).click();
  16. }
  17. })();
Advertisement
Add Comment
Please, Sign In to add comment