Org Capture
A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html
Qu'est-ce que Org Capture ?
Org Capture est une extension Chrome développée par https://slumpy.org, et sa fonction principale est "A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Org Capture
Téléchargez les fichiers d'extension Org Capture au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Org Capture |
ID | kkkjlfejijcjgjllecmnejhogpbcigdc |
URL Officiel | https://chromewebstore.google.com/detail/org-capture/kkkjlfejijcjgjllecmnejhogpbcigdc |
Description | A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html |
Taille du Fichier | 25.01 KB |
Nombre d'Installations | 1,463 |
Version Actuelle | 0.2.1 |
Dernière Mise à Jour | 2018-10-29 |
Date de Publication | 2018-10-28 |
Évaluation | 4.31/5 Total 13 Évaluations |
Développeur | https://slumpy.org |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/sprig/org-capture-extension |
URL de la Page d'Aide | https://github.com/sprig/org-capture-extension/issues |
Langues Prises en Charge | 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" } } } } |