您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
使Notion的目录悬浮于左上方
当前为
- // ==UserScript==
- // @name:en Notion The content of the floating table
- // @name Notion 浮动目录[Public archive]
- // @namespace http://tampermonkey.net/
- // @version 0.3
- // @description:en Make Notion's The content of the floating table
- // @description 使Notion的目录悬浮于左上方
- // @author NellPoi
- // @connect notion.so
- // @include *://*.notion.*/*
- // @icon https://toppng.com/uploads/preview/notion-logo-11609370405b4cvyz4wit.png
- // @grant none
- // @license MIT
- // ==/UserScript==
- (function () {
- 'use strict';
- let forceEnable = false;
- if (forceEnable) {
- let style = document.createElement('style');
- style.innerHTML = ".notion-table_of_contents-block{" +
- "z-index: 1000 !important;\n" +
- "position: fixed;\n" +
- "width: auto !important;\n" +
- "max-width: auto !important;\n" +
- "top: 50px;\n" +
- "left: 50px;\n" +
- "background-color: #fff;\n" +
- "}";
- document.head.appendChild(style);
- }else{
- alert("您现在看到这条消息是来自Notion 浮动目录脚本的提示\n公告:由于Notion的更新,原浮动目录脚本已失效,官方已经优化了该功能,现在您可以删除该脚本了,如果你还想继续使用,请到源代码编辑let forceEnable = true;。")
- }
- })();