Notion Quick Notes

Utilities for easy note taking with Notion

O que é Notion Quick Notes?

Notion Quick Notes é uma extensão do Chrome desenvolvida por PatrikT, e sua principal característica é "Utilities for easy note taking with Notion".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Notion Quick Notes

Baixe arquivos de extensão Notion Quick Notes no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Notion Quick Notes Notion Quick Notes
ID mjmgfnhinkdnieleomgojemahjekgmkn
URL Oficial https://chromewebstore.google.com/detail/notion-quick-notes/mjmgfnhinkdnieleomgojemahjekgmkn
Descrição Utilities for easy note taking with Notion
Tamanho do Arquivo 18.17 KB
Contagem de Instalações 1,611
Versão Atual 1.0.0
Última Atualização 2021-04-05
Data de Publicação 2021-04-04
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor PatrikT
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://docs.google.com/forms/d/e/1FAIpQLSckFaP55fTBAz-bBJuyNAwfpKuChk_5uL1bloPlPKdyNtPqqA/viewform?usp=sf_link
Idiomas Suportados 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
}