Handy Screenshot

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

Handy Screenshot क्या है?

Handy Screenshot https://ohhandy.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An easy tool for taking screenshots (full screen / visible part / selected by yourself)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Handy Screenshot एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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": [
        ""
    ]
}