notion-remove-add.js 761 B

123456789101112131415161718192021
  1. // ==UserScript==
  2. // @name T-Notion-去除加号
  3. // @namespace Violentmonkey Scripts
  4. // @include https://www.notion.so/tianyunperfect/3dcf8601bafc41e0852379f267b13415*
  5. // @grant none
  6. // @version 1.0
  7. // @author -
  8. // @description 2021/9/30 下午3:02:18
  9. // @require https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.slim.min.js
  10. // ==/UserScript==
  11. (function(){
  12. $('head').append($(`
  13. <!-- CSS部分 -->
  14. <style>
  15. #notion-app > div > div.notion-cursor-listener.showHoverText > div:nth-child(2) > div.notion-frame > div.notion-scroller.vertical.horizontal > div:nth-child(3) > div > div > div > div > div > div:nth-child(2) > div > div.notion-focusable
  16. {
  17. display: none !important;
  18. }
  19. </style>`));
  20. })();