Greasy Fork is available in English.

CSS: cyberyozh.com

Corrections to UI of cyberyozh.com: font style

  1. // ==UserScript==
  2. // @name CSS: cyberyozh.com
  3. // @description Corrections to UI of cyberyozh.com: font style
  4. // @author MK
  5. // @namespace max44
  6. // @homepage https://greasyfork.org/en/users/309172-max44
  7. // @include https://cyberyozh.com/*
  8. // @include http://cyberyozh.com/*
  9. // @icon https://cyberyozh.com/favicon.ico
  10. // @version 1.1.2
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. var css = `
  16. body, a {
  17. font-weight: normal !important;
  18. }
  19. `;
  20.  
  21. if (typeof GM_addStyle != 'undefined') {
  22. GM_addStyle(css);
  23. } else if (typeof PRO_addStyle != 'undefined') {
  24. PRO_addStyle(css);
  25. } else if (typeof addStyle != 'undefined') {
  26. addStyle(css);
  27. } else {
  28. var node = document.createElement('style');
  29. node.type = 'text/css';
  30. node.appendChild(document.createTextNode(css));
  31. document.documentElement.appendChild(node);
  32. }
  33. })();