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