Element Capture

Screen capture any element on a webpage.

O que é Element Capture?

Element Capture é uma extensão do Chrome desenvolvida por tlrobinson, e sua principal característica é "Screen capture any element on a webpage.".

Baixar o arquivo CRX da Extensão Element Capture

Baixe arquivos de extensão Element Capture no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Element Capture Element Capture
ID kabgnkphidokfocflfangphgdjhkknjg
URL Oficial https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg
Descrição Screen capture any element on a webpage.
Tamanho do Arquivo 34.67 KB
Contagem de Instalações 828
Versão Atual 1.1
Última Atualização 2015-09-30
Data de Publicação 2015-09-30
Classificação 2.83/5 Total de 42 Avaliações
Desenvolvedor tlrobinson
Tipo de Pagamento free
Site da Extensão https://github.com/tlrobinson/element-capture
Idiomas Suportados 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"
    }
}