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文件

下载Notion Quick Notes扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
}