Advertisement
Guest User

Untitled

a guest
May 3rd, 2024
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. // ==UserScript==
  2. // @name ComicNeue 4chan.org
  3. // @namespace Violentmonkey Scripts
  4. // @match https://boards.4chan.org/*
  5. // @grant none
  6. // @version 1.0
  7. // @author -
  8. // @description 26/03/2024, 23:03:58
  9. // ==/UserScript==
  10. (function() {
  11. const myStyleNode = document.createElement('style');
  12. myStyleNode.innerHTML = `
  13. @import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
  14. @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
  15. `
  16. document.head.appendChild(myStyleNode)
  17. })();
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement