Element Capture

Screen capture any element on a webpage.

Element Capture là gì?

Element Capture là một tiện ích mở rộng Chrome được phát triển bởi tlrobinson, và tính năng chính của nó là "Screen capture any element on a webpage.".

Tải xuống tệp CRX của tiện ích mở rộng Element Capture

Tải xuống các tệp mở rộng Element Capture dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Element Capture Element Capture
ID kabgnkphidokfocflfangphgdjhkknjg
URL Chính Thức https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg
Mô tả Screen capture any element on a webpage.
Kích Thước Tệp 34.67 KB
Số Lần Cài Đặt 828
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2015-09-30
Ngày Phát Hành 2015-09-30
Đánh Giá 2.83/5 Tổng số 42 Đánh Giá
Nhà Phát Triển tlrobinson
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tlrobinson/element-capture
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}