Org Capture
A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html
Что такое Org Capture?
Org Capture - это расширение Chrome, разработанное https://slumpy.org, и его основная функция - "A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html".
Снимки экрана расширения
Скачать файл CRX расширения Org Capture
Скачайте файлы расширений Org Capture в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| ID | kkkjlfejijcjgjllecmnejhogpbcigdc |
| Официальный URL | https://chromewebstore.google.com/detail/org-capture/kkkjlfejijcjgjllecmnejhogpbcigdc |
| Описание | A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html |
| Размер файла | 25.01 KB |
| Количество установок | 1,463 |
| Текущая Версия | 0.2.1 |
| Последнее Обновление | 2018-10-29 |
| Дата публикации | 2018-10-28 |
| Рейтинг | 4.31/5 Всего 13 оценок |
| Разработчик | https://slumpy.org |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/sprig/org-capture-extension |
| URL страницы помощи | https://github.com/sprig/org-capture-extension/issues |
| Поддерживаемые языки | 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"
}
}
}
} | |