Element Capture

Screen capture any element on a webpage.

Apa itu Element Capture?

Element Capture adalah ekstensi Chrome yang dikembangkan oleh tlrobinson, dan fitur utamanya adalah "Screen capture any element on a webpage.".

Unduh Berkas CRX Ekstensi Element Capture

Unduh file ekstensi Element Capture dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Element Capture Element Capture
ID kabgnkphidokfocflfangphgdjhkknjg
URL Resmi https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg
Deskripsi Screen capture any element on a webpage.
Ukuran File 34.67 KB
Jumlah Instalasi 828
Versi Saat Ini 1.1
Terakhir Diperbarui 2015-09-30
Tanggal Publikasi 2015-09-30
Penilaian 2.83/5 Total 42 Penilaian
Pengembang tlrobinson
Tipe Pembayaran free
Situs Ekstensi https://github.com/tlrobinson/element-capture
Bahasa yang Didukung 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"
    }
}