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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}