Scan CSS

A script to inspect, scan and copy CSS properties of any element on the web page

Cos'è Scan CSS?

Scan CSS è un'estensione di Chrome sviluppata da akshaymalik191, e la sua funzione principale è "A script to inspect, scan and copy CSS properties of any element on the web page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Scan CSS

Scarica i file di estensione Scan CSS 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

                        A free tool to inspect and edit CSS right in the browser without a need to open developer tools.

Press 'alt + s' to start the inspection.

Click on "Copy" to copy the CSS properties of the element.

Click on "Copy All" to copy the CSS properties of the element as well of its children.                    

Informazioni di Base sull'Estensione

Nome Scan CSS Scan CSS
ID mkdaolldfcljbalhclcakgjjiklajdof
URL Ufficiale https://chromewebstore.google.com/detail/scan-css/mkdaolldfcljbalhclcakgjjiklajdof
Descrizione A script to inspect, scan and copy CSS properties of any element on the web page
Dimensione del File 115 KB
Conteggio Installazioni 293
Versione Corrente 1.0.2
Ultimo Aggiornamento 2022-11-29
Data di Pubblicazione 2022-11-26
Valutazione 2.50/5 Totale 4 Valutazioni
Sviluppatore akshaymalik191
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scan CSS",
    "description": "A script to inspect, scan and copy CSS properties of any element on the web page",
    "version": "1.0.2",
    "icons": {
        "512": "icons\/Icon-512.png",
        "256": "icons\/Icon-256.png",
        "196": "icons\/Icon-196.png",
        "128": "icons\/Icon-128.png",
        "64": "icons\/Icon-64.png",
        "32": "icons\/Icon-32.png",
        "16": "icons\/Icon-16.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}