Advertisement
Guest User

Untitled

a guest
Jan 18th, 2023
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 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://www.wykop.pl
  8. // @match https://www.wykop.pl/*
  9. // @match https://wykop.pl
  10. // @match https://wykop.pl/*
  11. // @icon https://www.google.com/s2/favicons?sz=64&domain=wykop.pl
  12. // @resource WYKOP_CSS https://raw.githubusercontent.com/tentin-quarantino/wykop-the-best-style/main/style.css
  13. // @grant GM_getResourceText
  14. // @grant GM_addStyle
  15. // ==/UserScript==
  16.  
  17. function addCss(css) {
  18. var head = document.body;
  19. var style = document.createElement("style");
  20.  
  21. style.type = "text/css";
  22. style.textContent = css;
  23.  
  24. head.appendChild(style);
  25. }
  26.  
  27. const my_css = GM_getResourceText("WYKOP_CSS");
  28. addCss(my_css);
Tags: wykop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement