Elements Viewer

See your elements height and width on webpage

Cos'è Elements Viewer?

Elements Viewer è un'estensione di Chrome sviluppata da Seke Nikola, e la sua funzione principale è "See your elements height and width on webpage".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Elements Viewer

Scarica i file di estensione Elements Viewer 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 Viewer is a simple extension that helps front-end developers and designers to have a better visual representation of how elements are position on a web page.

Usage: Just press extension icon to toggle on and off.

Inspired by the tip from Gajus Kuizinas (https://github.com/gajus)                    

Informazioni di Base sull'Estensione

Nome Elements Viewer Elements Viewer
ID okglkbdhaneaglfmkmbkmglobmondaoc
URL Ufficiale https://chromewebstore.google.com/detail/elements-viewer/okglkbdhaneaglfmkmbkmglobmondaoc
Descrizione See your elements height and width on webpage
Dimensione del File 5.61 KB
Conteggio Installazioni 107
Versione Corrente 1
Ultimo Aggiornamento 2019-09-12
Data di Pubblicazione 2019-09-12
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Seke Nikola
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Elements Viewer",
    "description": "See your elements height and width on webpage",
    "version": "1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "elements-viewer.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Elements Viewer"
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "manifest_version": 2
}