Element Capture

Screen capture any element on a webpage.

Element Captureคืออะไร?

Element Capture เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tlrobinson และคุณลักษณะหลักของมันคือ "Screen capture any element on a webpage."

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

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

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

                        This is a Chrome extension which will screen capture any HTML element of your choosing.

Click the camera icon in the URL bar to begin selection, then hover over any element and click to capture an image and open it in a new tab.                    

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

ชื่อ Element Capture Element Capture
ID kabgnkphidokfocflfangphgdjhkknjg
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg
คำอธิบาย Screen capture any element on a webpage.
ขนาดไฟล์ 34.67 KB
จำนวนการติดตั้ง 828
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2015-09-30
วันที่เผยแพร่ 2015-09-30
คะแนน 2.83/5 รวมทั้งหมด 42 คะแนน
ผู้พัฒนา tlrobinson
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/tlrobinson/element-capture
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Element Capture",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Screen capture any element on a webpage.",
    "page_action": {
        "default_icon": "icon48.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}