Advertisement
Guest User

Untitled

a guest
Jan 19th, 2023
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Hejto motyw
  3. // @version 1
  4. // @grant none
  5. // @include https://*.hejto.pl/*
  6. // ==/UserScript==
  7.  
  8.  
  9.  
  10. window.addEventListener("load", function() {
  11. setTimeout(function() {
  12. if (document.querySelector('#root').attributes.class.value === "dark") {
  13. document.querySelector("[aria-label='Zmień motyw']").click();
  14. }
  15. }, 100);
  16. }, false);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement