grasp
Reliably capture links and webpage content in a plaintext file (org-mode/markdown)
什麼是grasp?
grasp是由Dmitrii Gerasimov開發的Chrome擴展程式,該擴展的主要功能是“Reliably capture links and webpage content in a plaintext file (org-mode/markdown)”。
擴展截圖
下載grasp擴展crx文件
下載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.
擴展基本資訊
名稱 | grasp |
ID | ohhbcfjmnbmgkajljopdjcaokbpgbgfa |
官方網址 | 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" } } |