grasp
Reliably capture links and webpage content in a plaintext file (org-mode/markdown)
graspคืออะไร?
grasp เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dmitrii Gerasimov และคุณลักษณะหลักของมันคือ "Reliably capture links and webpage content in a plaintext file (org-mode/markdown)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย grasp
ดาวน์โหลดไฟล์ส่วนขยาย grasp ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Grasp implements functionality similar to org-capture for your browser. It adds button/keybindings to capture current page title and url, possibly selected text, additional comments or tags and send it into your org-mode file.
To use it:
1. Install the extension from the addon store and setup hotkeys if necessary
2. Check out the extension repo at https://github.com/karlicoss/grasp and run `server/setup --path /path/to/your/capture.org`
You can find more recent information on Github. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | ohhbcfjmnbmgkajljopdjcaokbpgbgfa |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/grasp/ohhbcfjmnbmgkajljopdjcaokbpgbgfa |
| คำอธิบาย | Reliably capture links and webpage content in a plaintext file (org-mode/markdown) |
| ขนาดไฟล์ | 13.52 KB |
| จำนวนการติดตั้ง | 359 |
| เวอร์ชันปัจจุบัน | 0.6.9 |
| อัปเดตครั้งล่าสุด | 2022-12-28 |
| วันที่เผยแพร่ | 2020-02-09 |
| คะแนน | 4.25/5 รวมทั้งหมด 4 คะแนน |
| ผู้พัฒนา | Dmitrii Gerasimov |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/karlicoss/grasp |
| URL หน้าช่วยเหลือ | https://github.com/karlicoss/grasp/blob/master/README.md#running |
| URL หน้านโยบายความเป็นส่วนตัว | https://github.com/karlicoss/cws-privacy-policy/blob/main/privacy_policy.md |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "grasp",
"version": "0.6.9",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"icons": {
"128": "img\/unicorn.png"
},
"manifest_version": 2,
"description": "Reliably capture links and webpage content in a plaintext file (org-mode\/markdown)",
"permissions": [
"storage",
"notifications",
"activeTab",
"http:\/\/localhost\/capture",
"https:\/\/localhost\/capture"
],
"commands": {
"capture-simple": {
"description": "Quick capture: url, title and selection",
"suggested_key": {
"default": "Ctrl+Shift+C",
"mac": "Command+Shift+C"
}
},
"_execute_browser_action": {
"description": "Capture page, with extra information",
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
}
}
},
"optional_permissions": [
"http:\/\/*\/capture",
"https:\/\/*\/capture"
],
"browser_action": {
"default_icon": "img\/unicorn.png",
"default_popup": "popup.html",
"default_title": "Capture page, with extra information"
}
} | |