NotionSidebarHider
This is an extension that prevents the Notion sidebar from opening on hover.
Vad är NotionSidebarHider?
NotionSidebarHider är en Chrome-tillägg utvecklad av https://notion-fan.com, och dess huvudfunktion är "This is an extension that prevents the Notion sidebar from opening on hover.".
Tilläggsskärmbilder
Ladda ner NotionSidebarHider-förlängningens CRX-fil
Ladda ner NotionSidebarHider-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 のサイドバーがホバーで表示されることを防ぎます。ご自身がサイドバーを表示したいタイミングだけ、ショートカットキーやボタンクリックでサイドバーを表示することができます。
Grundläggande Information om Tillägg
Namn | NotionSidebarHider |
ID | laogfgfllgbpkdbggdbmlfbogikkfinj |
Officiell webbadress | https://chromewebstore.google.com/detail/notionsidebarhider/laogfgfllgbpkdbggdbmlfbogikkfinj |
Beskrivning | This is an extension that prevents the Notion sidebar from opening on hover. |
Filstorlek | 17.09 KB |
Antal Installationer | 611 |
Aktuell Version | 0.1.0 |
Senast Uppdaterad | 2023-05-02 |
Publiceringsdatum | 2023-05-02 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | https://notion-fan.com |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |