NotionSidebarHider
This is an extension that prevents the Notion sidebar from opening on hover.
Что такое NotionSidebarHider?
NotionSidebarHider - это расширение Chrome, разработанное https://notion-fan.com, и его основная функция - "This is an extension that prevents the Notion sidebar from opening on hover.".
Снимки экрана расширения
Скачать файл CRX расширения NotionSidebarHider
Скачайте файлы расширений 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 のサイドバーがホバーで表示されることを防ぎます。ご自身がサイドバーを表示したいタイミングだけ、ショートカットキーやボタンクリックでサイドバーを表示することができます。
Основная информация о расширении
Название | NotionSidebarHider |
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" } } |