Ultimate Org Capture
Taking notes in org-mode while searching the web has never been easier.
Что такое Ultimate Org Capture?
Ultimate Org Capture - это расширение Chrome, разработанное Diego Berrocal, и его основная функция - "Taking notes in org-mode while searching the web has never been easier.".
Снимки экрана расширения
Скачать файл CRX расширения Ultimate Org Capture
Скачайте файлы расширений Ultimate Org Capture в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
You'll need aditional modification of you emacs/OS setup. Read more here: http://cestdiego.github.io/blog/2015/08/19/org-protocol/ Основная информация о расширении
| Название | |
| ID | ijcpiacdhbjjpfookgaodhblgainmcbf |
| Официальный URL | https://chrome.google.com/webstore/detail/ultimate-org-capture/ijcpiacdhbjjpfookgaodhblgainmcbf |
| Описание | Taking notes in org-mode while searching the web has never been easier. |
| Размер файла | 49.32 KB |
| Количество установок | 97 |
| Текущая Версия | 1.1 |
| Последнее Обновление | 2015-11-29 |
| Дата публикации | 2015-11-29 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | Diego Berrocal |
| Тип оплаты | free |
| Поддерживаемые языки | 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"
}
} | |