NotionSidebarHider

This is an extension that prevents the Notion sidebar from opening on hover.

Qu'est-ce que NotionSidebarHider ?

NotionSidebarHider est une extension Chrome développée par https://notion-fan.com, et sa fonction principale est "This is an extension that prevents the Notion sidebar from opening on hover.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension NotionSidebarHider

Téléchargez les fichiers d'extension NotionSidebarHider au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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 のサイドバーがホバーで表示されることを防ぎます。ご自身がサイドバーを表示したいタイミングだけ、ショートカットキーやボタンクリックでサイドバーを表示することができます。                    

Informations de Base sur l'Extension

Nom NotionSidebarHider NotionSidebarHider
ID laogfgfllgbpkdbggdbmlfbogikkfinj
URL Officiel https://chromewebstore.google.com/detail/notionsidebarhider/laogfgfllgbpkdbggdbmlfbogikkfinj
Description This is an extension that prevents the Notion sidebar from opening on hover.
Taille du Fichier 17.09 KB
Nombre d'Installations 611
Version Actuelle 0.1.0
Dernière Mise à Jour 2023-05-02
Date de Publication 2023-05-02
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://notion-fan.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}