Handy Screenshot

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

Co je Handy Screenshot?

Handy Screenshot je rozšíření Chrome vyvinuté https://ohhandy.com, a jeho hlavní funkcí je „An easy tool for taking screenshots (full screen / visible part / selected by yourself)“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Handy Screenshot

Stáhněte si soubory rozšíření Handy Screenshot ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Handy Screenshot Handy Screenshot
ID dajlhodahakobmgdiglkajjgbchiiccf
Oficiální URL https://chromewebstore.google.com/detail/handy-screenshot/dajlhodahakobmgdiglkajjgbchiiccf
Popis An easy tool for taking screenshots (full screen / visible part / selected by yourself)
Velikost souboru 353 KB
Počet instalací 23,299
Aktuální Verze 1.3.0
Poslední Aktualizace 2022-09-14
Datum Vydání 2020-05-30
Hodnocení 4.83/5 Celkem 361 Hodnocení
Vývojář https://ohhandy.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.ohhandy.com/
URL Stránky Nápovědy https://www.ohhandy.com/
Podporované Jazyky 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": [
        ""
    ]
}