Ultimate Org Capture
Taking notes in org-mode while searching the web has never been easier.
ما هو Ultimate Org Capture؟
Ultimate Org Capture هو إضافة Chrome تم تطويرها بواسطة Diego Berrocal، والميزة الرئيسية لها هي "Taking notes in org-mode while searching the web has never been easier.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Ultimate Org Capture
قم بتنزيل ملفات الامتداد Ultimate Org Capture بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |