Org Capture
A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html
Co to jest Org Capture?
Org Capture to rozszerzenie Chrome opracowane przez https://slumpy.org, a jego główną funkcją jest „A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Org Capture
Pobierz pliki rozszerzeń Org Capture w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | kkkjlfejijcjgjllecmnejhogpbcigdc |
| Oficjalny URL | https://chromewebstore.google.com/detail/org-capture/kkkjlfejijcjgjllecmnejhogpbcigdc |
| Opis | A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html |
| Rozmiar pliku | 25.01 KB |
| Liczba instalacji | 1,463 |
| Aktualna Wersja | 0.2.1 |
| Ostatnia Aktualizacja | 2018-10-29 |
| Data Publikacji | 2018-10-28 |
| Ocena | 4.31/5 Łącznie 13 Oceny |
| Deweloper | https://slumpy.org |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/sprig/org-capture-extension |
| Adres URL Strony Pomocy | https://github.com/sprig/org-capture-extension/issues |
| Obsługiwane Języki | 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"
}
}
}
} | |