Handy Screenshot

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

Qu'est-ce que Handy Screenshot ?

Handy Screenshot est une extension Chrome développée par https://ohhandy.com, et sa fonction principale est "An easy tool for taking screenshots (full screen / visible part / selected by yourself)".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Handy Screenshot

Téléchargez les fichiers d'extension Handy Screenshot au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Handy Screenshot Handy Screenshot
ID dajlhodahakobmgdiglkajjgbchiiccf
URL Officiel https://chromewebstore.google.com/detail/handy-screenshot/dajlhodahakobmgdiglkajjgbchiiccf
Description An easy tool for taking screenshots (full screen / visible part / selected by yourself)
Taille du Fichier 353 KB
Nombre d'Installations 23,299
Version Actuelle 1.3.0
Dernière Mise à Jour 2022-09-14
Date de Publication 2020-05-30
Évaluation 4.83/5 Total 361 Évaluations
Développeur https://ohhandy.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.ohhandy.com/
URL de la Page d'Aide https://www.ohhandy.com/
Langues Prises en Charge 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": [
        ""
    ]
}