Notion 浮动目录[Public archive]

使Notion的目录悬浮于左上方

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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;。")
    }
})();