Element Capture

Capture an element in html

O que é Element Capture?

Element Capture é uma extensão do Chrome desenvolvida por hirosuke suzuki, e sua principal característica é "Capture an element in html".

Capturas de Tela da Extensão

screenshot
screenshot

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

                        Webページの任意の要素を完全に複製し、Pngファイルとして保存するための拡張です。

- 特徴
  - Chromeで表示された画面をそのまま保存します。
  - Htmlエレメントを選択し、キャプチャ画像を保存することが可能です。

- 注意
  - ピンチズームされた画面には対応していません。
 
-------------------

Element Capture lets you save any element on a web page as a *.png image.

- Features:
  - Save images exactly as they appear on Chrome. 
  - Save any individual HTML element as an image.                    

Informações Básicas da Extensão

Nome Element Capture Element Capture
ID gecogpoijmggeflfbigninpaplcjofdh
URL Oficial https://chromewebstore.google.com/detail/element-capture/gecogpoijmggeflfbigninpaplcjofdh
Descrição Capture an element in html
Tamanho do Arquivo 71.93 KB
Contagem de Instalações 233
Versão Atual 0.0.2
Última Atualização 2019-11-20
Data de Publicação 2019-11-19
Classificação 3.40/5 Total de 5 Avaliações
Desenvolvedor hirosuke suzuki
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Element Capture",
    "description": "Capture an element in html",
    "version": "0.0.2",
    "browser_action": {
        "default_icon": "128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "web_accessible_resources": [
        "48.png"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "matches": [
            ""
        ],
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "tabs",
        ""
    ]
}