NotionSidebarHider
This is an extension that prevents the Notion sidebar from opening on hover.
Cos'è NotionSidebarHider?
NotionSidebarHider è un'estensione di Chrome sviluppata da https://notion-fan.com, e la sua funzione principale è "This is an extension that prevents the Notion sidebar from opening on hover.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NotionSidebarHider
Scarica i file di estensione NotionSidebarHider in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 のサイドバーがホバーで表示されることを防ぎます。ご自身がサイドバーを表示したいタイミングだけ、ショートカットキーやボタンクリックでサイドバーを表示することができます。
Informazioni di Base sull'Estensione
Nome | NotionSidebarHider |
ID | laogfgfllgbpkdbggdbmlfbogikkfinj |
URL Ufficiale | https://chromewebstore.google.com/detail/notionsidebarhider/laogfgfllgbpkdbggdbmlfbogikkfinj |
Descrizione | This is an extension that prevents the Notion sidebar from opening on hover. |
Dimensione del File | 17.09 KB |
Conteggio Installazioni | 611 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2023-05-02 |
Data di Pubblicazione | 2023-05-02 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://notion-fan.com |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |