Ultimate Org Capture
Taking notes in org-mode while searching the web has never been easier.
Co to jest Ultimate Org Capture?
Ultimate Org Capture to rozszerzenie Chrome opracowane przez Diego Berrocal, a jego główną funkcją jest „Taking notes in org-mode while searching the web has never been easier.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Ultimate Org Capture
Pobierz pliki rozszerzeń Ultimate 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
You'll need aditional modification of you emacs/OS setup. Read more here: http://cestdiego.github.io/blog/2015/08/19/org-protocol/ Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ijcpiacdhbjjpfookgaodhblgainmcbf |
| Oficjalny URL | https://chrome.google.com/webstore/detail/ultimate-org-capture/ijcpiacdhbjjpfookgaodhblgainmcbf |
| Opis | Taking notes in org-mode while searching the web has never been easier. |
| Rozmiar pliku | 49.32 KB |
| Liczba instalacji | 97 |
| Aktualna Wersja | 1.1 |
| Ostatnia Aktualizacja | 2015-11-29 |
| Data Publikacji | 2015-11-29 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | Diego Berrocal |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
}
} | |