Org Capture
A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html
Org Capture là gì?
Org Capture là một tiện ích mở rộng Chrome được phát triển bởi https://slumpy.org, và tính năng chính của nó là "A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Org Capture
Tải xuống các tệp mở rộng Org Capture dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Changelog: Added a keyboard shortcut: Ctrl+Shift+L ------------- Detailed (emacs/system) setup instructions at: http://orgmode.org/worg/org-contrib/org-protocol.html Selected text is sent to: "org-protocol://capture:/p// /selection>" and if nothing is selected, the link is sent to: "org-protocol://capture:/L/ / " Currently the addresses are not customizable, but you are welcome to submit pull requests to https://github.com/sprig/org-capture-extension Please also submit bugs: especially if the selection doesn't work for you.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Org Capture |
ID | kkkjlfejijcjgjllecmnejhogpbcigdc |
URL Chính Thức | https://chromewebstore.google.com/detail/org-capture/kkkjlfejijcjgjllecmnejhogpbcigdc |
Mô tả | A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html |
Kích Thước Tệp | 25.01 KB |
Số Lần Cài Đặt | 1,463 |
Phiên Bản Hiện Tại | 0.2.1 |
Cập Nhật Lần Cuối | 2018-10-29 |
Ngày Phát Hành | 2018-10-28 |
Đánh Giá | 4.31/5 Tổng số 13 Đánh Giá |
Nhà Phát Triển | https://slumpy.org |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/sprig/org-capture-extension |
URL Trang Trợ Giúp | https://github.com/sprig/org-capture-extension/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Org Capture", "version": "0.2.1", "description": "A helper for capturing things via org-protocol in emacs: First, set up: http:\/\/orgmode.org\/worg\/org-contrib\/org-protocol.html", "homepage_url": "https:\/\/github.com\/sprig\/org-capture-extension", "background": { "persistent": false, "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "storage" ], "options_ui": { "page": "options.html" }, "browser_action": { "default_icon": "org-mode-unicorn.png" }, "commands": { "_execute_browser_action": { "description": "Capture current page with org-capture", "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" } } } } |