Element Screenshot

Take screenshot of any HTML element on a webpage.

Apa itu Element Screenshot?

Element Screenshot adalah ekstensi Chrome yang dikembangkan oleh Tahin Rahman, dan fitur utamanya adalah "Take screenshot of any HTML element on a webpage.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Element Screenshot

Unduh file ekstensi Element Screenshot 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

                        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.                    

Informasi Dasar Ekstensi

Nama Element Screenshot Element Screenshot
ID mhbapdljigafafoimcnnhagdclejnkcf
URL Resmi https://chrome.google.com/webstore/detail/element-screenshot/mhbapdljigafafoimcnnhagdclejnkcf
Deskripsi Take screenshot of any HTML element on a webpage.
Ukuran File 13.83 KB
Jumlah Instalasi 2,354
Versi Saat Ini 1.1
Terakhir Diperbarui 2015-08-24
Tanggal Publikasi 2015-08-24
Penilaian 3.54/5 Total 46 Penilaian
Pengembang Tahin Rahman
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://www.tahins.me
Bahasa yang Didukung 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"
    }
}