Handy Screenshot

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

什麼是Handy Screenshot?

Handy Screenshot是由https://ohhandy.com開發的Chrome擴展程式,該擴展的主要功能是“An easy tool for taking screenshots (full screen / visible part / selected by yourself)”。

擴展截圖

screenshot
screenshot

下載Handy Screenshot擴展crx文件

下載Handy Screenshot擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Handy Screenshot Handy Screenshot
ID dajlhodahakobmgdiglkajjgbchiiccf
官方網址 https://chromewebstore.google.com/detail/handy-screenshot/dajlhodahakobmgdiglkajjgbchiiccf
簡介 An easy tool for taking screenshots (full screen / visible part / selected by yourself)
檔案大小 353 KB
安裝次數 23,299
目前版本 1.3.0
更新時間 2022-09-14
上架時間 2020-05-30
評分 4.83/5 共 361 次評分
開發者 https://ohhandy.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.ohhandy.com/
說明頁面URL https://www.ohhandy.com/
支援的語言 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": [
        ""
    ]
}