Ultimate Org Capture
Taking notes in org-mode while searching the web has never been easier.
Qu'est-ce que Ultimate Org Capture ?
Ultimate Org Capture est une extension Chrome développée par Diego Berrocal, et sa fonction principale est "Taking notes in org-mode while searching the web has never been easier.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Ultimate Org Capture
Téléchargez les fichiers d'extension Ultimate 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
You'll need aditional modification of you emacs/OS setup. Read more here: http://cestdiego.github.io/blog/2015/08/19/org-protocol/
Informations de Base sur l'Extension
Nom | |
ID | ijcpiacdhbjjpfookgaodhblgainmcbf |
URL Officiel | https://chrome.google.com/webstore/detail/ultimate-org-capture/ijcpiacdhbjjpfookgaodhblgainmcbf |
Description | Taking notes in org-mode while searching the web has never been easier. |
Taille du Fichier | 49.32 KB |
Nombre d'Installations | 97 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2015-11-29 |
Date de Publication | 2015-11-29 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Diego Berrocal |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |