Org Capture
A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html
What is Org Capture?
Org Capture is a Chrome extension developed by https://slumpy.org, and its main feature is "A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html".
Extension Screenshots
Download Org Capture Extension CRX File
Download Org Capture extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Org Capture |
ID | kkkjlfejijcjgjllecmnejhogpbcigdc |
Official URL | https://chromewebstore.google.com/detail/org-capture/kkkjlfejijcjgjllecmnejhogpbcigdc |
Description | A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html |
File Size | 25.01 KB |
Installation Count | 1,463 |
Current Version | 0.2.1 |
Last Updated | 2018-10-29 |
Publish Date | 2018-10-28 |
Rating | 4.31/5 Total 13 Ratings |
Developer | https://slumpy.org |
Payment Type | free |
Extension Website | https://github.com/sprig/org-capture-extension |
Help Page URL | https://github.com/sprig/org-capture-extension/issues |
Supported Languages | 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" } } } } |