Handy Screenshot

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

Apa itu Handy Screenshot?

Handy Screenshot adalah ekstensi Chrome yang dikembangkan oleh https://ohhandy.com, dan fitur utamanya adalah "An easy tool for taking screenshots (full screen / visible part / selected by yourself)".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Handy Screenshot

Unduh file ekstensi Handy Screenshot dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Handy Screenshot Handy Screenshot
ID dajlhodahakobmgdiglkajjgbchiiccf
URL Resmi https://chromewebstore.google.com/detail/handy-screenshot/dajlhodahakobmgdiglkajjgbchiiccf
Deskripsi An easy tool for taking screenshots (full screen / visible part / selected by yourself)
Ukuran File 353 KB
Jumlah Instalasi 23,299
Versi Saat Ini 1.3.0
Terakhir Diperbarui 2022-09-14
Tanggal Publikasi 2020-05-30
Penilaian 4.83/5 Total 361 Penilaian
Pengembang https://ohhandy.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.ohhandy.com/
URL Halaman Bantuan https://www.ohhandy.com/
Bahasa yang Didukung 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": [
        ""
    ]
}