grasp

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

grasp là gì?

grasp là một tiện ích mở rộng Chrome được phát triển bởi Dmitrii Gerasimov, và tính năng chính của nó là "Reliably capture links and webpage content in a plaintext file (org-mode/markdown)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng grasp

Tải xuống các tệp mở rộng grasp dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên grasp grasp
ID ohhbcfjmnbmgkajljopdjcaokbpgbgfa
URL Chính Thức https://chromewebstore.google.com/detail/grasp/ohhbcfjmnbmgkajljopdjcaokbpgbgfa
Mô tả Reliably capture links and webpage content in a plaintext file (org-mode/markdown)
Kích Thước Tệp 13.52 KB
Số Lần Cài Đặt 359
Phiên Bản Hiện Tại 0.6.9
Cập Nhật Lần Cuối 2022-12-28
Ngày Phát Hành 2020-02-09
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Dmitrii Gerasimov
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/karlicoss/grasp
URL Trang Trợ Giúp https://github.com/karlicoss/grasp/blob/master/README.md#running
URL Trang Chính Sách Bảo Mật https://github.com/karlicoss/cws-privacy-policy/blob/main/privacy_policy.md
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}