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
公式URL 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
Eメール [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": [
        ""
    ]
}