Advertisement
Guest User

wykop css

a guest
Jan 18th, 2023
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Wykop 3.0 CSS by tentin_quarantino
  3. // @description Wykop 3.0 CSS by tentin_quarantino
  4. // @namespace https://wykop.pl
  5. // @version 0.1
  6. // @author tentin_quarantino
  7. // @match https://wykop.pl/**
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=wykop.pl
  9. // @run-at document-body
  10. // @resource WYKOP_CSS https://raw.githubusercontent.com/tentin-quarantino/wykop-the-best-style/main/style.css
  11. // @grant GM_getResourceText
  12. // @grant GM_addStyle
  13. // ==/UserScript==
  14.  
  15. function addCss(css) {
  16. var head = document.body;
  17. var style = document.createElement("style");
  18.  
  19. style.type = "text/css";
  20. style.textContent = css;
  21.  
  22. head.appendChild(style);
  23. }
  24.  
  25. const my_css = GM_getResourceText("WYKOP_CSS");
  26. addCss(my_css);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement