Element Screenshot

Take screenshot of any HTML element on a webpage.

O que é Element Screenshot?

Element Screenshot é uma extensão do Chrome desenvolvida por Tahin Rahman, e sua principal característica é "Take screenshot of any HTML element on a webpage.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Element Screenshot

Baixe arquivos de extensão Element Screenshot 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

                        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.                    

Informações Básicas da Extensão

Nome Element Screenshot Element Screenshot
ID mhbapdljigafafoimcnnhagdclejnkcf
URL Oficial https://chrome.google.com/webstore/detail/element-screenshot/mhbapdljigafafoimcnnhagdclejnkcf
Descrição Take screenshot of any HTML element on a webpage.
Tamanho do Arquivo 13.83 KB
Contagem de Instalações 2,354
Versão Atual 1.1
Última Atualização 2015-08-24
Data de Publicação 2015-08-24
Classificação 3.54/5 Total de 46 Avaliações
Desenvolvedor Tahin Rahman
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://www.tahins.me
Idiomas Suportados 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"
    }
}