您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
notion help button position move
// ==UserScript== // @name notionHelpButtonPostionMove // @namespace http://www.notion.so/ // @version 0.1 // @description notion help button position move // @author xz // @match https://www.notion.so/* // @icon https://www.google.com/s2/favicons?domain=notion.so // @grant none // ==/UserScript== (function() { 'use strict'; /* Word Count Element */ const countCss = ` .notion-help-button.notion-focusable { bottom: 35px !important; } `; const countEl = document.createElement('style'); countEl.innerHTML = countCss; /* Word Count Element */ const helpBtn = document.querySelector('head'); helpBtn.after(countEl); })();