Greasy Fork镜像 支持简体中文。

notionHelpButtonPostionMove

notion help button position move

  1. // ==UserScript==
  2. // @name notionHelpButtonPostionMove
  3. // @namespace http://www.notion.so/
  4. // @version 0.1
  5. // @description notion help button position move
  6. // @author xz
  7. // @match https://www.notion.so/*
  8. // @icon https://www.google.com/s2/favicons?domain=notion.so
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. /* Word Count Element */
  16. const countCss = `
  17. .notion-help-button.notion-focusable {
  18. bottom: 35px !important;
  19. }
  20. `;
  21. const countEl = document.createElement('style');
  22. countEl.innerHTML = countCss;
  23. /* Word Count Element */
  24.  
  25. const helpBtn = document.querySelector('head');
  26. helpBtn.after(countEl);
  27. })();

QingJ © 2025

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