Ultimate Org Capture
Taking notes in org-mode while searching the web has never been easier.
什么是Ultimate Org Capture?
Ultimate Org Capture是由Diego Berrocal开发的Chrome扩展程序,该扩展的主要功能是“Taking notes in org-mode while searching the web has never been easier.”。
扩展截图
下载Ultimate Org Capture扩展crx文件
下载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"
}
} | |