Handy Screenshot

An easy tool for taking screenshots (full screen / visible part / selected by yourself)

Handy Screenshot là gì?

Handy Screenshot là một tiện ích mở rộng Chrome được phát triển bởi https://ohhandy.com, và tính năng chính của nó là "An easy tool for taking screenshots (full screen / visible part / selected by yourself)".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Handy Screenshot 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

                        Capture the web page, either part of it or full page. Edit your screenshots in a very user-friendly interface.

Click on icon or Press Alt twice to take screenshots.

-----

Notes: 

- With 1.3.0 rolled out,  it's been migrated to manifest v3, and now you can copy the image with one click, no need for right click and copy image any more

- With the latest change shipped with Chrome 92, the time spent on taking full page screenshot becomes slower.   Reference:  https://developer.chrome.com/docs/extensions/reference/tabs/#property-MAX_CAPTURE_VISIBLE_TAB_CALLS_PER_SECOND                    

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

Tên Handy Screenshot Handy Screenshot
ID dajlhodahakobmgdiglkajjgbchiiccf
URL Chính Thức https://chromewebstore.google.com/detail/handy-screenshot/dajlhodahakobmgdiglkajjgbchiiccf
Mô tả An easy tool for taking screenshots (full screen / visible part / selected by yourself)
Kích Thước Tệp 353 KB
Số Lần Cài Đặt 23,299
Phiên Bản Hiện Tại 1.3.0
Cập Nhật Lần Cuối 2022-09-14
Ngày Phát Hành 2020-05-30
Đánh Giá 4.83/5 Tổng số 361 Đánh Giá
Nhà Phát Triển https://ohhandy.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.ohhandy.com/
URL Trang Trợ Giúp https://www.ohhandy.com/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Handy Screenshot",
    "description": "An easy tool for taking screenshots (full screen \/ visible part \/ selected by yourself)",
    "version": "1.3.0",
    "author": "ohhandy.com",
    "icons": {
        "256": "logo.png"
    },
    "action": {
        "default_icon": {
            "38": "logo.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "capture.html",
                "capture.js"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ],
    "offline_enabled": true,
    "permissions": [
        "storage",
        "scripting",
        "notifications",
        "contextMenus"
    ],
    "host_permissions": [
        ""
    ]
}