Ultimate Org Capture

Taking notes in org-mode while searching the web has never been easier.

Was ist Ultimate Org Capture?

Ultimate Org Capture ist eine Chrome-Erweiterung, die von Diego Berrocal entwickelt wurde, und ihr Hauptmerkmal ist "Taking notes in org-mode while searching the web has never been easier.".

Erweiterungsscreenshots

screenshot

Ultimate Org Capture-Erweiterungs-CRX-Datei herunterladen

Laden Sie Ultimate Org Capture-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        You'll need aditional modification of you emacs/OS setup. Read more here: http://cestdiego.github.io/blog/2015/08/19/org-protocol/                    

Grundlegende Informationen zur Erweiterung

Name Ultimate Org Capture Ultimate Org Capture
ID ijcpiacdhbjjpfookgaodhblgainmcbf
Offizielle URL https://chrome.google.com/webstore/detail/ultimate-org-capture/ijcpiacdhbjjpfookgaodhblgainmcbf
Beschreibung Taking notes in org-mode while searching the web has never been easier.
Dateigröße 49.32 KB
Installationsanzahl 97
Aktuelle Version 1.1
Letztes Update 2015-11-29
Veröffentlichungsdatum 2015-11-29
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Diego Berrocal
Zahlungsart free
Unterstützte Sprachen 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"
    }
}