Kirka Css Injector

custom css injector for kirka.io

目前为 2022-03-25 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Kirka Css Injector
  3. // @author ©2022 DdDd
  4. // @version 1.1
  5. // @match *://kirka.io/*
  6. // @run-at document-start
  7. // @icon https://www.google.com/s2/favicons?domain=kirka.io
  8. // @description custom css injector for kirka.io
  9. // @namespace https://greasyfork.org/users/858307
  10. // ==/UserScript==
  11.  
  12. // REPLACE THE LINK IN THE " " WITH YOUR OWN CSS LINK
  13. const cssLink = "https://cdn.discordapp.com/attachments/738010330780926004/955078958918033438/Titans.css";
  14.  
  15. document.addEventListener("DOMContentLoaded", () => {
  16.  
  17. let cssLinkElem = document.createElement("link");
  18. cssLinkElem.href = cssLink;
  19. cssLinkElem.rel = "stylesheet";
  20.  
  21. document.head.append(cssLinkElem);
  22.  
  23. });