Ultimate Org Capture
Taking notes in org-mode while searching the web has never been easier.
O que é Ultimate Org Capture?
Ultimate Org Capture é uma extensão do Chrome desenvolvida por Diego Berrocal, e sua principal característica é "Taking notes in org-mode while searching the web has never been easier.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Ultimate Org Capture
Baixe arquivos de extensão Ultimate Org Capture no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
You'll need aditional modification of you emacs/OS setup. Read more here: http://cestdiego.github.io/blog/2015/08/19/org-protocol/
Informações Básicas da Extensão
Nome | |
ID | ijcpiacdhbjjpfookgaodhblgainmcbf |
URL Oficial | https://chrome.google.com/webstore/detail/ultimate-org-capture/ijcpiacdhbjjpfookgaodhblgainmcbf |
Descrição | Taking notes in org-mode while searching the web has never been easier. |
Tamanho do Arquivo | 49.32 KB |
Contagem de Instalações | 97 |
Versão Atual | 1.1 |
Última Atualização | 2015-11-29 |
Data de Publicação | 2015-11-29 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Diego Berrocal |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |