grasp

Reliably capture links and webpage content in a plaintext file (org-mode/markdown)

grasp क्या है?

grasp Dmitrii Gerasimov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reliably capture links and webpage content in a plaintext file (org-mode/markdown)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में grasp एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 grasp
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"
    }
}