Innoreader Mobile Nav Bar Center

Mobile Nav Bar Center for Inoreader

  1. // ==UserScript==
  2. // @name Innoreader Mobile Nav Bar Center
  3. // @namespace http://tampermonkey.net/
  4. // @license MIT
  5. // @version 1.0.1
  6. // @description Mobile Nav Bar Center for Inoreader
  7. // @author genio
  8. // @match *://*.inoreader.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12.  
  13. (function () {
  14. 'use strict';
  15.  
  16. const mobileFooter = document.querySelector('.mobile_footer');
  17. if (mobileFooter) {
  18. let thirdEmptyPart = document.createElement('div');
  19. thirdEmptyPart.id = 'prefix';
  20. thirdEmptyPart.className = 'relative flex w-100';
  21. mobileFooter.prepend(thirdEmptyPart);
  22. }
  23.  
  24. })();

QingJ © 2025

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