X-notion-topbar

消除 Notion 顶部提示

  1. // ==UserScript==
  2. // @name X-notion-topbar
  3. // @namespace http://tampermonkey.net/
  4. // @description 消除 Notion 顶部提示
  5. // @match *://www.notion.so/*
  6. // @match *://*.notion.site/*
  7. // @grant none
  8. // @run-at document-start
  9. // @license MIT
  10. // @version 0.1
  11. // ==/UserScript==
  12. (function() {
  13. function addStyle(styleString) {
  14. const style = document.createElement('style');
  15. style.textContent = styleString;
  16. document.head.append(style);
  17. }
  18.  
  19. window.addEventListener('DOMContentLoaded', () => {
  20. addStyle(`
  21. .notion-topbar + div {
  22. display: none;
  23. }
  24. `)
  25. })
  26. })();

QingJ © 2025

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