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 |
| 官方網址 | 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"
}
}
}
} | |