Notion Quick Notes
Utilities for easy note taking with Notion
Notion Quick Notesคืออะไร?
Notion Quick Notes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย PatrikT และคุณลักษณะหลักของมันคือ "Utilities for easy note taking with Notion"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notion Quick Notes
ดาวน์โหลดไฟล์ส่วนขยาย 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!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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 } |