Org Capture
A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html
Wat is Org Capture?
Org Capture is een Chrome-extensie ontwikkeld door https://slumpy.org, en de belangrijkste functie is "A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html".
Extensie Screenshots
Download het CRX-bestand van de extensie Org Capture
Download Org Capture-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Org Capture |
ID | kkkjlfejijcjgjllecmnejhogpbcigdc |
Officiële URL | https://chromewebstore.google.com/detail/org-capture/kkkjlfejijcjgjllecmnejhogpbcigdc |
Beschrijving | A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html |
Bestandsgrootte | 25.01 KB |
Aantal Installaties | 1,463 |
Huidige Versie | 0.2.1 |
Laatst Bijgewerkt | 2018-10-29 |
Publicatiedatum | 2018-10-28 |
Beoordeling | 4.31/5 Totaal 13 Beoordelingen |
Ontwikkelaar | https://slumpy.org |
Betalingswijze | free |
Extensiewebsite | https://github.com/sprig/org-capture-extension |
Help Pagina-URL | https://github.com/sprig/org-capture-extension/issues |
Ondersteunde Talen | 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" } } } } |