Element Screenshot

Take screenshot of any HTML element on a webpage.

Cos'è Element Screenshot?

Element Screenshot è un'estensione di Chrome sviluppata da Tahin Rahman, e la sua funzione principale è "Take screenshot of any HTML element on a webpage.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Element Screenshot

Scarica i file di estensione Element Screenshot 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Element Screenshot Element Screenshot
ID mhbapdljigafafoimcnnhagdclejnkcf
URL Ufficiale https://chrome.google.com/webstore/detail/element-screenshot/mhbapdljigafafoimcnnhagdclejnkcf
Descrizione Take screenshot of any HTML element on a webpage.
Dimensione del File 13.83 KB
Conteggio Installazioni 2,354
Versione Corrente 1.1
Ultimo Aggiornamento 2015-08-24
Data di Pubblicazione 2015-08-24
Valutazione 3.54/5 Totale 46 Valutazioni
Sviluppatore Tahin Rahman
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://www.tahins.me
Lingue Supportate 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"
    }
}