Handy Screenshot

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

Vad är Handy Screenshot?

Handy Screenshot är en Chrome-tillägg utvecklad av https://ohhandy.com, och dess huvudfunktion är "An easy tool for taking screenshots (full screen / visible part / selected by yourself)".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Handy Screenshot-förlängningens CRX-fil

Ladda ner Handy Screenshot-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Handy Screenshot Handy Screenshot
ID dajlhodahakobmgdiglkajjgbchiiccf
Officiell webbadress https://chromewebstore.google.com/detail/handy-screenshot/dajlhodahakobmgdiglkajjgbchiiccf
Beskrivning An easy tool for taking screenshots (full screen / visible part / selected by yourself)
Filstorlek 353 KB
Antal Installationer 23,299
Aktuell Version 1.3.0
Senast Uppdaterad 2022-09-14
Publiceringsdatum 2020-05-30
Betyg 4.83/5 Totalt 361 Betyg
Utvecklare https://ohhandy.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.ohhandy.com/
Hjälpsida URL https://www.ohhandy.com/
Stödda Språk 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": [
        ""
    ]
}