Element Capture

Capture an element in html

Element Captureคืออะไร?

Element Capture เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hirosuke suzuki และคุณลักษณะหลักของมันคือ "Capture an element in html"

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

screenshot
screenshot

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

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

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

                        Webページの任意の要素を完全に複製し、Pngファイルとして保存するための拡張です。

- 特徴
  - Chromeで表示された画面をそのまま保存します。
  - Htmlエレメントを選択し、キャプチャ画像を保存することが可能です。

- 注意
  - ピンチズームされた画面には対応していません。
 
-------------------

Element Capture lets you save any element on a web page as a *.png image.

- Features:
  - Save images exactly as they appear on Chrome. 
  - Save any individual HTML element as an image.                    

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

ชื่อ Element Capture Element Capture
ID gecogpoijmggeflfbigninpaplcjofdh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/element-capture/gecogpoijmggeflfbigninpaplcjofdh
คำอธิบาย Capture an element in html
ขนาดไฟล์ 71.93 KB
จำนวนการติดตั้ง 233
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2019-11-20
วันที่เผยแพร่ 2019-11-19
คะแนน 3.40/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา hirosuke suzuki
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Element Capture",
    "description": "Capture an element in html",
    "version": "0.0.2",
    "browser_action": {
        "default_icon": "128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "web_accessible_resources": [
        "48.png"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "matches": [
            ""
        ],
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "tabs",
        ""
    ]
}