Twitter Rainbow Stream

Make your Twetter Stream electrifying!

  1. // ==UserScript==
  2. // @name Twitter Rainbow Stream
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description Make your Twetter Stream electrifying!
  6. // @author eggplants
  7. // @homepage https://github.com/eggplants
  8. // @match https://twitter.com/*
  9. // @grant none
  10. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js
  11. // ==/UserScript==
  12.  
  13. function rainbow(selector) {
  14. const colors = 'to right, red, orange, yellow, green, aqua, blue, purple';
  15. $(selector).css('cssText', `background: linear-gradient(${colors}) !important`);
  16. }
  17. function selectRainbow() {
  18. rainbow('body');
  19. rainbow('div.r-f9dfq4');
  20. rainbow('div.r-ry3cjt');
  21. rainbow('div.r-m611by');
  22. rainbow('div.r-1j3t67a');
  23. rainbow('div.r-my5ep6');
  24. rainbow('div.r-my5ep6');
  25. rainbow('div.r-1h3ijdo');
  26. rainbow('div.r-1jgb5lz');
  27. rainbow('div.r-1uu6nss');
  28. rainbow('div.r-1i9ubto');
  29. rainbow('a.r-my5ep6');
  30. rainbow('div.r-e84r5y');
  31. rainbow('div.r-14lw9ot');
  32. rainbow('article.r-6416eg');
  33. rainbow('a.r-6416eg');
  34. rainbow('div.r-1f1sjgu');
  35. }
  36. setInterval(selectRainbow)

QingJ © 2025

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