Greasy Fork镜像 支持简体中文。

🌚 Dark Get Emoji

Dark mode for Get Emoji

  1. // ==UserScript==
  2. // @name 🌚 Dark Get Emoji
  3. // @namespace https://gf.qytechs.cn/pl/users/1081704-nameniok
  4. // @version 1.0.4
  5. // @author Nameniok
  6. // @description Dark mode for Get Emoji
  7. // @run-at document-start
  8. // @match https://getemoji.com/
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. var DarkGetEmojiStyles = document.createElement('style');
  15. DarkGetEmojiStyles.textContent = `
  16. body {
  17. background-color: #111 !important;
  18. color: #ccc !important;
  19. }
  20. input {
  21. background-color: #333 !important;
  22. outline: none !important;
  23. }
  24. .emoji-button {
  25. border-width: 0px !important;
  26. }
  27. .emoji-button:hover {
  28. background-color: transparent !important;
  29. }
  30. .emoji-copied-text {
  31. background-color: #222 !important;
  32. border-width: 0px !important;
  33. color: #ccc !important;
  34. }
  35. *::-webkit-scrollbar {
  36. width: 12px;
  37. height: 12px;
  38. }
  39. *::-webkit-scrollbar-track {
  40. background: transparent;
  41. }
  42. *::-webkit-scrollbar-thumb {
  43. background-color: #222;
  44. border-radius: 6px;
  45. }
  46. *::-webkit-scrollbar-thumb:hover {
  47. background-color: #333;
  48. }
  49. *::-webkit-scrollbar-corner {
  50. background-color: transparent;
  51. }
  52. * {
  53. scrollbar-width: thin;
  54. scrollbar-color: #222 transparent;
  55. }
  56. *:hover {
  57. scrollbar-color: #333 transparent;
  58. }
  59. `;
  60. document.documentElement.insertAdjacentHTML('afterbegin', DarkGetEmojiStyles.outerHTML);
  61. })();

QingJ © 2025

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