Lightweight Screenshot

Take screenshots. Also works for full page and custom-size screenshots.

Lightweight Screenshotคืออะไร?

Lightweight Screenshot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Adam Feor และคุณลักษณะหลักของมันคือ "Take screenshots. Also works for full page and custom-size screenshots."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Lightweight Screenshot

ดาวน์โหลดไฟล์ส่วนขยาย Lightweight Screenshot ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A simple screenshot extension for Chrome. Supports taking screenshots of the current window, of an entire page (scrolling) and of a custom area.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Lightweight Screenshot Lightweight Screenshot
ID eapeifgbfommamnclhbppicejicnpooc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/lightweight-screenshot/eapeifgbfommamnclhbppicejicnpooc
คำอธิบาย Take screenshots. Also works for full page and custom-size screenshots.
ขนาดไฟล์ 39.4 KB
จำนวนการติดตั้ง 478
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2018-04-29
วันที่เผยแพร่ 2018-04-29
คะแนน 4.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Adam Feor
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lightweight Screenshot",
    "description": "Take screenshots. Also works for full page and custom-size screenshots.",
    "version": "1.1",
    "icons": {
        "19": "images\/monitoriconsmall.png",
        "48": "images\/monitoricon48.png",
        "128": "images\/monitoricon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/cus.png",
        "image\/vis.png",
        "images\/full.png",
        "images\/check.png",
        "images\/cross.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/monitoriconsmall.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "",
        "downloads"
    ]
}