Z-index Visualizer

A tool that visualizes (2.5D) the stacking contexts of web pages.

Cos'è Z-index Visualizer?

Z-index Visualizer è un'estensione di Chrome sviluppata da jeong57281, e la sua funzione principale è "A tool that visualizes (2.5D) the stacking contexts of web pages.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Z-index Visualizer

Scarica i file di estensione Z-index Visualizer 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

                        Due to the stacking context concept of CSS, in certain situations, no matter how high the z-index value is, the desired result may not be achieved.

By visualizing the stacking context (2.5D), the tool helps you quickly identify which elements the current stacking context is dependent on.

Github: https://github.com/junghyunbak/chrome-extension-z-index-visualizer                    

Informazioni di Base sull'Estensione

Nome Z-index Visualizer Z-index Visualizer
ID hpimpiejkldpjhijfpglflpplnhdffcf
URL Ufficiale https://chromewebstore.google.com/detail/z-index-visualizer/hpimpiejkldpjhijfpglflpplnhdffcf
Descrizione A tool that visualizes (2.5D) the stacking contexts of web pages.
Dimensione del File 97.5 KB
Conteggio Installazioni 189
Versione Corrente 1.0.0
Ultimo Aggiornamento 2023-07-25
Data di Pubblicazione 2023-07-24
Sviluppatore jeong57281
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A tool that visualizes (2.5D) the stacking contexts of web pages.",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "Z-index Visualizer",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_icon": "icon-32.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-32.png"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}