NotionSidebarHider
This is an extension that prevents the Notion sidebar from opening on hover.
¿Qué es NotionSidebarHider?
NotionSidebarHider es una extensión de Chrome desarrollada por https://notion-fan.com, y su función principal es "This is an extension that prevents the Notion sidebar from opening on hover.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión NotionSidebarHider
Descarga archivos de extensión NotionSidebarHider en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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 のサイドバーがホバーで表示されることを防ぎます。ご自身がサイドバーを表示したいタイミングだけ、ショートカットキーやボタンクリックでサイドバーを表示することができます。
Información Básica de la Extensión
Nombre | NotionSidebarHider |
ID | laogfgfllgbpkdbggdbmlfbogikkfinj |
URL Oficial | https://chromewebstore.google.com/detail/notionsidebarhider/laogfgfllgbpkdbggdbmlfbogikkfinj |
Descripción | This is an extension that prevents the Notion sidebar from opening on hover. |
Tamaño del Archivo | 17.09 KB |
Cantidad de Instalaciones | 611 |
Versión Actual | 0.1.0 |
Última Actualización | 2023-05-02 |
Fecha de Publicación | 2023-05-02 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | https://notion-fan.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |