NotionSidebarHider
This is an extension that prevents the Notion sidebar from opening on hover.
什么是NotionSidebarHider?
NotionSidebarHider是由https://notion-fan.com开发的Chrome扩展程序,该扩展的主要功能是“This is an extension that prevents the Notion sidebar from opening on hover.”。
扩展截图
下载NotionSidebarHider扩展crx文件
下载NotionSidebarHider扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This Chrome extension prevents the Notion sidebar from appearing on hover. You can display the sidebar only when you want to, by using shortcut keys or clicking a button. This extension is designed to prevent the sidebar from being displayed unexpectedly, and to allow you to control when it is visible.
このChrome拡張機能は、Notion のサイドバーがホバーで表示されることを防ぎます。ご自身がサイドバーを表示したいタイミングだけ、ショートカットキーやボタンクリックでサイドバーを表示することができます。 扩展基本信息
| 名称 | |
| ID | laogfgfllgbpkdbggdbmlfbogikkfinj |
| 官方URL | https://chromewebstore.google.com/detail/notionsidebarhider/laogfgfllgbpkdbggdbmlfbogikkfinj |
| 简介 | This is an extension that prevents the Notion sidebar from opening on hover. |
| 文件大小 | 17.09 KB |
| 安装次数 | 611 |
| 当前版本 | 0.1.0 |
| 更新时间 | 2023-05-02 |
| 上架时间 | 2023-05-02 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | https://notion-fan.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "NotionSidebarHider",
"description": "This is an extension that prevents the Notion sidebar from opening on hover.",
"version": "0.1.0",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"https:\/\/www.notion.so\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |