Notion Quick Notes

Utilities for easy note taking with Notion

Cos'è Notion Quick Notes?

Notion Quick Notes è un'estensione di Chrome sviluppata da PatrikT, e la sua funzione principale è "Utilities for easy note taking with Notion".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Notion Quick Notes

Scarica i file di estensione Notion Quick Notes 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

                        Helps with quick note taking in Notion (https://notion.so).

Rules in Notion:
* Use only top-level pages (never nest pages under each other)
* Use square brackets in the title of a page to add labels eg. [cooking]

Extension actions:
* Alt+T - create new page
* Alt+L - show existing labels -> click a label to see its pages

Go create a new Workspace in Notion and try quick-and-easy note taking with this extension!                    

Informazioni di Base sull'Estensione

Nome Notion Quick Notes Notion Quick Notes
ID mjmgfnhinkdnieleomgojemahjekgmkn
URL Ufficiale https://chromewebstore.google.com/detail/notion-quick-notes/mjmgfnhinkdnieleomgojemahjekgmkn
Descrizione Utilities for easy note taking with Notion
Dimensione del File 18.17 KB
Conteggio Installazioni 1,611
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-04-05
Data di Pubblicazione 2021-04-04
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore PatrikT
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://docs.google.com/forms/d/e/1FAIpQLSckFaP55fTBAz-bBJuyNAwfpKuChk_5uL1bloPlPKdyNtPqqA/viewform?usp=sf_link
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion Quick Notes",
    "version": "1.0.0",
    "description": "Utilities for easy note taking with Notion",
    "permissions": [
        "declarativeContent",
        "activeTab",
        "https:\/\/notion.so\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "commands": {
        "new_note": {
            "suggested_key": {
                "default": "Alt+T"
            },
            "description": "Create new note"
        },
        "_execute_page_action": {
            "suggested_key": {
                "default": "Alt+L"
            }
        }
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/qn16.png",
            "32": "images\/qn32.png",
            "48": "images\/qn48.png",
            "128": "images\/qn128.png"
        }
    },
    "icons": {
        "16": "images\/qn16.png",
        "32": "images\/qn32.png",
        "48": "images\/qn48.png",
        "128": "images\/qn128.png"
    },
    "manifest_version": 2
}