Elements Viewer

See your elements height and width on webpage

Co to jest Elements Viewer?

Elements Viewer to rozszerzenie Chrome opracowane przez Seke Nikola, a jego główną funkcją jest „See your elements height and width on webpage”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Elements Viewer

Pobierz pliki rozszerzeń Elements Viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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)                    

Podstawowe informacje o rozszerzeniu

Nazwa Elements Viewer Elements Viewer
ID okglkbdhaneaglfmkmbkmglobmondaoc
Oficjalny URL https://chromewebstore.google.com/detail/elements-viewer/okglkbdhaneaglfmkmbkmglobmondaoc
Opis See your elements height and width on webpage
Rozmiar pliku 5.61 KB
Liczba instalacji 107
Aktualna Wersja 1
Ostatnia Aktualizacja 2019-09-12
Data Publikacji 2019-09-12
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Seke Nikola
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}