Org Capture
A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html
Cos'è Org Capture?
Org Capture è un'estensione di Chrome sviluppata da https://slumpy.org, e la sua funzione principale è "A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Org Capture
Scarica i file di estensione Org Capture in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | kkkjlfejijcjgjllecmnejhogpbcigdc |
| URL Ufficiale | https://chromewebstore.google.com/detail/org-capture/kkkjlfejijcjgjllecmnejhogpbcigdc |
| Descrizione | A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html |
| Dimensione del File | 25.01 KB |
| Conteggio Installazioni | 1,463 |
| Versione Corrente | 0.2.1 |
| Ultimo Aggiornamento | 2018-10-29 |
| Data di Pubblicazione | 2018-10-28 |
| Valutazione | 4.31/5 Totale 13 Valutazioni |
| Sviluppatore | https://slumpy.org |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/sprig/org-capture-extension |
| URL della Pagina di Aiuto | https://github.com/sprig/org-capture-extension/issues |
| Lingue Supportate | 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"
}
}
}
} | |