style-shims

Shims for GM_addStyle and GM.addStyle.

Αυτός ο κώδικας δεν πρέπει να εγκατασταθεί άμεσα. Είναι μια βιβλιοθήκη για άλλους κώδικες που περιλαμβάνεται μέσω της οδηγίας meta // @require https://update.greatest.deepsurf.us/scripts/483122/1304475/style-shims.js

  1. // ==UserScript==
  2. // @name style-shims
  3. // @description Shims for GM_addStyle and GM.addStyle.
  4. // @author Jason Kwok
  5. // @namespace https://jasonhk.dev/
  6. // @version 1.0.3
  7. // @license MIT
  8. // ==/UserScript==
  9.  
  10. let GM_addStyle = function GM_addStyle(css)
  11. {
  12. const style = document.createElement("style");
  13. style.setAttribute("type", "text/css");
  14. style.textContent = css;
  15.  
  16. const target = document.head ?? document.documentElement;
  17. return target.appendChild(style);
  18. }
  19.  
  20. GM.addStyle = GM_addStyle;