Elements Viewer

See your elements height and width on webpage

Co je Elements Viewer?

Elements Viewer je rozšíření Chrome vyvinuté Seke Nikola, a jeho hlavní funkcí je „See your elements height and width on webpage“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Elements Viewer

Stáhněte si soubory rozšíření Elements Viewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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)                    

Základní Informace o Rozšíření

Název Elements Viewer Elements Viewer
ID okglkbdhaneaglfmkmbkmglobmondaoc
Oficiální URL https://chromewebstore.google.com/detail/elements-viewer/okglkbdhaneaglfmkmbkmglobmondaoc
Popis See your elements height and width on webpage
Velikost souboru 5.61 KB
Počet instalací 107
Aktuální Verze 1
Poslední Aktualizace 2019-09-12
Datum Vydání 2019-09-12
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář Seke Nikola
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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
}