Handy Screenshot

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

O que é Handy Screenshot?

Handy Screenshot é uma extensão do Chrome desenvolvida por https://ohhandy.com, e sua principal característica é "An easy tool for taking screenshots (full screen / visible part / selected by yourself)".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Handy Screenshot

Baixe arquivos de extensão Handy Screenshot no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Handy Screenshot Handy Screenshot
ID dajlhodahakobmgdiglkajjgbchiiccf
URL Oficial https://chromewebstore.google.com/detail/handy-screenshot/dajlhodahakobmgdiglkajjgbchiiccf
Descrição An easy tool for taking screenshots (full screen / visible part / selected by yourself)
Tamanho do Arquivo 353 KB
Contagem de Instalações 23,299
Versão Atual 1.3.0
Última Atualização 2022-09-14
Data de Publicação 2020-05-30
Classificação 4.83/5 Total de 361 Avaliações
Desenvolvedor https://ohhandy.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.ohhandy.com/
URL da Página de Ajuda https://www.ohhandy.com/
Idiomas Suportados 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": [
        ""
    ]
}