grasp
Reliably capture links and webpage content in a plaintext file (org-mode/markdown)
Qu'est-ce que grasp ?
grasp est une extension Chrome développée par Dmitrii Gerasimov, et sa fonction principale est "Reliably capture links and webpage content in a plaintext file (org-mode/markdown)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension grasp
Téléchargez les fichiers d'extension grasp au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | grasp |
ID | ohhbcfjmnbmgkajljopdjcaokbpgbgfa |
URL Officiel | https://chromewebstore.google.com/detail/grasp/ohhbcfjmnbmgkajljopdjcaokbpgbgfa |
Description | Reliably capture links and webpage content in a plaintext file (org-mode/markdown) |
Taille du Fichier | 13.52 KB |
Nombre d'Installations | 359 |
Version Actuelle | 0.6.9 |
Dernière Mise à Jour | 2022-12-28 |
Date de Publication | 2020-02-09 |
Évaluation | 4.25/5 Total 4 Évaluations |
Développeur | Dmitrii Gerasimov |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/karlicoss/grasp |
URL de la Page d'Aide | https://github.com/karlicoss/grasp/blob/master/README.md#running |
URL de la Page de Politique de Confidentialité | https://github.com/karlicoss/cws-privacy-policy/blob/main/privacy_policy.md |
Langues Prises en Charge | 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" } } |