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)」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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"
    }
}