Scan CSS

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

Was ist Scan CSS?

Scan CSS ist eine Chrome-Erweiterung, die von akshaymalik191 entwickelt wurde, und ihr Hauptmerkmal ist "A script to inspect, scan and copy CSS properties of any element on the web page".

Erweiterungsscreenshots

screenshot

Scan CSS-Erweiterungs-CRX-Datei herunterladen

Laden Sie Scan CSS-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Scan CSS Scan CSS
ID mkdaolldfcljbalhclcakgjjiklajdof
Offizielle URL https://chromewebstore.google.com/detail/scan-css/mkdaolldfcljbalhclcakgjjiklajdof
Beschreibung A script to inspect, scan and copy CSS properties of any element on the web page
Dateigröße 115 KB
Installationsanzahl 293
Aktuelle Version 1.0.2
Letztes Update 2022-11-29
Veröffentlichungsdatum 2022-11-26
Bewertung 2.50/5 Insgesamt 4 Bewertungen
Entwickler akshaymalik191
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}