Reddit: Bigger Arrows

try to take over the world!

  1. // ==UserScript==
  2. // @name Reddit: Bigger Arrows
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://www.reddit.com/r/*
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. function GM_addStyle(css) {
  15. const style = document.getElementById("GM_addStyle") || (function() {
  16. const style = document.createElement('style');
  17. style.type = 'text/css';
  18. style.id = "GM_addStyle";
  19. document.head.appendChild(style);
  20. return style;
  21. })();
  22. const sheet = style.sheet;
  23. sheet.insertRule(css, (sheet.rules || sheet.cssRules || []).length);
  24. }
  25.  
  26. GM_addStyle ( '.voteButton { height:50px!important;width:50px!important;}' );
  27. GM_addStyle ( '.voteButton>span{width :50px}' );
  28. GM_addStyle ( 'i.icon-upvote{font-size:25px}' );
  29. GM_addStyle ( 'i.icon-downvote{font-size:25px}' );
  30.  
  31. })();

QingJ © 2025

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