Org Capture
A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html
Was ist Org Capture?
Org Capture ist eine Chrome-Erweiterung, die von https://slumpy.org entwickelt wurde, und ihr Hauptmerkmal ist "A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html".
Erweiterungsscreenshots
Org Capture-Erweiterungs-CRX-Datei herunterladen
Laden Sie Org Capture-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kkkjlfejijcjgjllecmnejhogpbcigdc |
| Offizielle URL | https://chromewebstore.google.com/detail/org-capture/kkkjlfejijcjgjllecmnejhogpbcigdc |
| Beschreibung | A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html |
| Dateigröße | 25.01 KB |
| Installationsanzahl | 1,463 |
| Aktuelle Version | 0.2.1 |
| Letztes Update | 2018-10-29 |
| Veröffentlichungsdatum | 2018-10-28 |
| Bewertung | 4.31/5 Insgesamt 13 Bewertungen |
| Entwickler | https://slumpy.org |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/sprig/org-capture-extension |
| Hilfeseite URL | https://github.com/sprig/org-capture-extension/issues |
| Unterstützte Sprachen | 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"
}
}
}
} | |