Element Capture

Screen capture any element on a webpage.

¿Qué es Element Capture?

Element Capture es una extensión de Chrome desarrollada por tlrobinson, y su función principal es "Screen capture any element on a webpage.".

Descargar Archivo CRX de la Extensión Element Capture

Descarga archivos de extensión Element Capture en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Element Capture Element Capture
ID kabgnkphidokfocflfangphgdjhkknjg
URL Oficial https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg
Descripción Screen capture any element on a webpage.
Tamaño del Archivo 34.67 KB
Cantidad de Instalaciones 828
Versión Actual 1.1
Última Actualización 2015-09-30
Fecha de Publicación 2015-09-30
Calificación 2.83/5 Total de 42 Calificaciones
Desarrollador tlrobinson
Tipo de Pago free
Sitio Web de la Extensión https://github.com/tlrobinson/element-capture
Idiomas Soportados 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"
    }
}