Funnyjunk Notification Preview Radius Changer

Changes the radius of the notification preview

  1. // ==UserScript==
  2. // @name Funnyjunk Notification Preview Radius Changer
  3. // @namespace Posttwo
  4. // @description Changes the radius of the notification preview
  5. // @include *.funnyjunk.com/*
  6. // @version 1
  7. // ==/UserScript==
  8.  
  9. (function() {
  10. var css = "\n#rightPopupAlert { border-radius: 2px;!important; border-width: thin; }\n}";
  11. if (typeof GM_addStyle != "undefined") {
  12. GM_addStyle(css);
  13. } else if (typeof PRO_addStyle != "undefined") {
  14. PRO_addStyle(css);
  15. } else if (typeof addStyle != "undefined") {
  16. addStyle(css);
  17. } else {
  18. var heads = document.getElementsByTagName("head");
  19. if (heads.length > 0) {
  20. var node = document.createElement("style");
  21. node.type = "text/css";
  22. node.appendChild(document.createTextNode(css));
  23. heads[0].appendChild(node);
  24. }
  25. }
  26. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址