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是由https://slumpy.org开发的Chrome扩展程序,该扩展的主要功能是“A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html”。
扩展截图
下载Org Capture扩展crx文件
下载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"
}
}
}
} | |