Notion Quick Notes

Utilities for easy note taking with Notion

Notion Quick Notes란 무엇입니까?

Notion Quick Notes은(는) PatrikT에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Utilities for easy note taking with Notion"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Notion Quick Notes 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 Notion Quick Notes Notion Quick Notes
ID mjmgfnhinkdnieleomgojemahjekgmkn
공식 URL https://chromewebstore.google.com/detail/notion-quick-notes/mjmgfnhinkdnieleomgojemahjekgmkn
설명 Utilities for easy note taking with Notion
파일 크기 18.17 KB
설치 횟수 1,611
현재 버전 1.0.0
최근 업데이트 2021-04-05
출시 날짜 2021-04-04
평점 5.00/5 총 1 개의 평점
개발자 PatrikT
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://docs.google.com/forms/d/e/1FAIpQLSckFaP55fTBAz-bBJuyNAwfpKuChk_5uL1bloPlPKdyNtPqqA/viewform?usp=sf_link
지원되는 언어 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
}