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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Org Capture |
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" } } } } |