Org Capture
A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html
O que é Org Capture?
Org Capture é uma extensão do Chrome desenvolvida por https://slumpy.org, e sua principal característica é "A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Org Capture
Baixe arquivos de extensão 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
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.
Informações Básicas da Extensão
Nome | Org Capture |
ID | kkkjlfejijcjgjllecmnejhogpbcigdc |
URL Oficial | https://chromewebstore.google.com/detail/org-capture/kkkjlfejijcjgjllecmnejhogpbcigdc |
Descrição | A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html |
Tamanho do Arquivo | 25.01 KB |
Contagem de Instalações | 1,463 |
Versão Atual | 0.2.1 |
Última Atualização | 2018-10-29 |
Data de Publicação | 2018-10-28 |
Classificação | 4.31/5 Total de 13 Avaliações |
Desenvolvedor | https://slumpy.org |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/sprig/org-capture-extension |
URL da Página de Ajuda | https://github.com/sprig/org-capture-extension/issues |
Idiomas Suportados | 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" } } } } |