RodrickLord

Untitled

Apr 10th, 2022
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Load JetBrains Mono Nerd Font
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://code.rodrick.dev/*
  8. // @icon https://www.google.com/s2/favicons?domain=code.rodrick.dev
  9. // @resource IMPORTED_CSS https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/JetBrainsMono/Ligatures/Regular/complete/JetBrains%20Mono%20Regular%20Nerd%20Font%20Complete%20Mono.ttf?raw=true
  10. // @grant GM_getResourceText
  11. // @grant GM_addStyle
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. const my_css = GM_getResourceText("IMPORTED_CSS");
  18. GM_addStyle(my_css);
  19.  
  20. })();
Add Comment
Please, Sign In to add comment