Element Screenshot

Take screenshot of any HTML element on a webpage.

Element Screenshotคืออะไร?

Element Screenshot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tahin Rahman และคุณลักษณะหลักของมันคือ "Take screenshot of any HTML element on a webpage."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Element Screenshot
===============

This is a Chrome extension which will take screenshot of any HTML element in a webpage.

Click the camera icon in the URL bar, hover over the element you want to capture and click to take the screenshot.

This extension was originally developed by Robinson and available here (which is not maintained anymore): https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg

My version is a bug fixed version of the original.                    

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

ชื่อ Element Screenshot Element Screenshot
ID mhbapdljigafafoimcnnhagdclejnkcf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/element-screenshot/mhbapdljigafafoimcnnhagdclejnkcf
คำอธิบาย Take screenshot of any HTML element on a webpage.
ขนาดไฟล์ 13.83 KB
จำนวนการติดตั้ง 2,354
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2015-08-24
วันที่เผยแพร่ 2015-08-24
คะแนน 3.54/5 รวมทั้งหมด 46 คะแนน
ผู้พัฒนา Tahin Rahman
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.tahins.me
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Element Screenshot",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Take screenshot of any HTML element on a webpage.",
    "page_action": {
        "default_icon": "icon48.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "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"
    }
}