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" } } |