Ultimate Org Capture
Taking notes in org-mode while searching the web has never been easier.
Ultimate Org Capture là gì?
Ultimate Org Capture là một tiện ích mở rộng Chrome được phát triển bởi Diego Berrocal, và tính năng chính của nó là "Taking notes in org-mode while searching the web has never been easier.".
Ả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 Ultimate Org Capture
Tải xuống các tệp mở rộng Ultimate 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
You'll need aditional modification of you emacs/OS setup. Read more here: http://cestdiego.github.io/blog/2015/08/19/org-protocol/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ijcpiacdhbjjpfookgaodhblgainmcbf |
URL Chính Thức | https://chrome.google.com/webstore/detail/ultimate-org-capture/ijcpiacdhbjjpfookgaodhblgainmcbf |
Mô tả | Taking notes in org-mode while searching the web has never been easier. |
Kích Thước Tệp | 49.32 KB |
Số Lần Cài Đặt | 97 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2015-11-29 |
Ngày Phát Hành | 2015-11-29 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Diego Berrocal |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Ultimate Org Capture", "description": "Taking notes in org-mode while searching the web has never been easier.", "version": "1.1", "homepage_url": "https:\/\/github.com\/cestdiego\/org-capture-chrome", "permissions": [ "activeTab" ], "background": { "persistent": true, "scripts": [ "main.js" ] }, "commands": { "link": { "suggested_key": { "default": "Ctrl+Shift+L" }, "description": "Capture the link, if there was a selection, send that too" }, "capture": { "suggested_key": { "default": "Ctrl+Shift+C" }, "description": "Capture the selected text" } }, "icons": { "128": "org-mode-unicorn-logo-large.png" }, "browser_action": { "default_icon": "org-mode-unicorn-logo-large.png", "default_popup": "popup.html" } } |