Handy Screenshot

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

Τι είναι το Handy Screenshot;

Το Handy Screenshot είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://ohhandy.com, και η κύρια λειτουργία του είναι "An easy tool for taking screenshots (full screen / visible part / selected by yourself)".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Handy Screenshot

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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": [
        ""
    ]
}