redditp mobile friendly

better buttons

目前为 2024-10-22 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name redditp mobile friendly
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-10-22
  5. // @description better buttons
  6. // @author You
  7. // @match https://redditp.com/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. for (const id of ['prevButton', 'nextButton']) {
  15. const button = document.getElementById(id);
  16. if (button) {
  17. button.style.height = "100%";
  18. button.style.width = "50%";
  19. button.style.opacity = "0";
  20. button.style.top = "0px";
  21. }
  22. }
  23. })();