CleanChat Kick

Cleaner chat on kick

  1. // ==UserScript==
  2. // @name CleanChat Kick
  3. // @namespace https://gge.gg
  4. // @version 0.1
  5. // @description Cleaner chat on kick
  6. // @author SomeGuy
  7. // @match https://kick.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=kick.com
  9. // @grant none
  10. // @license WTFPL
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. function GM_addStyle(css) {
  16. const style = document.getElementById("GM_addStyleBy8626") || (function() {
  17. const style = document.createElement('style');
  18. style.type = 'text/css';
  19. style.id = "GM_addStyleBy8626";
  20. document.head.appendChild(style);
  21. return style;
  22. })();
  23. const sheet = style.sheet;
  24. sheet.insertRule(css, (sheet.rules || sheet.cssRules || []).length);
  25. }
  26.  
  27. //demo :
  28. GM_addStyle("\
  29. .chat-entry {margin-left: 5px; \
  30. margin-right: 0.375rem;\
  31. min-height: 28px;\
  32. border-radius: 4px;\
  33. padding: 4px 10px;\
  34. font-size: .875rem;\
  35. line-height: 1.25rem;\
  36. font-weight: 500;\
  37. font-size: 12px;\
  38. background: #ffffff0a;}\
  39. ");
  40.  
  41.  
  42.  
  43. })();

QingJ © 2025

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