Ultimate Org Capture
Taking notes in org-mode while searching the web has never been easier.
Cos'è Ultimate Org Capture?
Ultimate Org Capture è un'estensione di Chrome sviluppata da Diego Berrocal, e la sua funzione principale è "Taking notes in org-mode while searching the web has never been easier.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Ultimate Org Capture
Scarica i file di estensione Ultimate 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
You'll need aditional modification of you emacs/OS setup. Read more here: http://cestdiego.github.io/blog/2015/08/19/org-protocol/
Informazioni di Base sull'Estensione
Nome | |
ID | ijcpiacdhbjjpfookgaodhblgainmcbf |
URL Ufficiale | https://chrome.google.com/webstore/detail/ultimate-org-capture/ijcpiacdhbjjpfookgaodhblgainmcbf |
Descrizione | Taking notes in org-mode while searching the web has never been easier. |
Dimensione del File | 49.32 KB |
Conteggio Installazioni | 97 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2015-11-29 |
Data di Pubblicazione | 2015-11-29 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Diego Berrocal |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |