V2EX红心

V2EX感谢数变成红心

  1. // ==UserScript==
  2. // @name V2EX红心
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description V2EX感谢数变成红心
  6. // @author Mother Ship
  7. // @include https://*.v2ex.com/*
  8. // @include https://v2ex.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. document.querySelectorAll('span').forEach(item => {
  14. if("small fade"==item.className) {
  15. item.style.color="red";
  16. }
  17. });
  18. })();