12345678910111213141516171819 |
- // ==UserScript==
- // @name T-Notion-去除加号
- // @namespace Violentmonkey Scripts
- // @include https://www.notion.so/tianyunperfect/3dcf8601bafc41e0852379f267b13415*
- // @grant none
- // @version 1.0
- // @author -
- // @description 2021/9/30 下午3:02:18
- // @require http://www.tianyunperfect.cn:3001/tianyunperfect/web-base/raw/369c684a3d4f12d24ef0e6edacde733e3a6e2d00/tmp/monkey/util.js
- // ==/UserScript==
- (function(){
- addNewStyle(`
- #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
- {
- display: none !important;
- }
- `)
- })();
|