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 هو إضافة Chrome تم تطويرها بواسطة https://slumpy.org، والميزة الرئيسية لها هي "A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Org Capture
قم بتنزيل ملفات الامتداد Org Capture بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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. معلومات أساسية عن التمديد
| الاسم | |
| 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 |
| عنوان صفحة المساعدة | 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"
}
}
}
} | |