Element Capture

Screen capture any element on a webpage.

Cos'è Element Capture?

Element Capture è un'estensione di Chrome sviluppata da tlrobinson, e la sua funzione principale è "Screen capture any element on a webpage.".

Scarica il file CRX dell'estensione Element Capture

Scarica i file di estensione Element Capture in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Element Capture Element Capture
ID kabgnkphidokfocflfangphgdjhkknjg
URL Ufficiale https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg
Descrizione Screen capture any element on a webpage.
Dimensione del File 34.67 KB
Conteggio Installazioni 828
Versione Corrente 1.1
Ultimo Aggiornamento 2015-09-30
Data di Pubblicazione 2015-09-30
Valutazione 2.83/5 Totale 42 Valutazioni
Sviluppatore tlrobinson
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/tlrobinson/element-capture
Lingue Supportate 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"
    }
}