css scanner

The fastest, cleanest free css property viewer.

¿Qué es css scanner?

css scanner es una extensión de Chrome desarrollada por tldralgos, y su función principal es "The fastest, cleanest free css property viewer.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión css scanner

Descarga archivos de extensión css scanner en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        The cleanest. easiest way to view, copy, and export css.

css scanner 4.0: is the fastest free way to inspect css. Ditch Inspect element forever for this cleaner UI. Visualize the css of any element and copy its entire css rules with a single click.

Shortcuts: 
- Ctrl+Shift+S: Activate Extension
- Alt+Shift+S: Pause/Continue
- Ctrl+Shift+X: Toggle Grid
- Spacebar: Pin the current block
- ESC Key: Close the Extension

This extension is free so support our small team of developers working on it:
https://www.buymeacoffee.com/tldralgos

If you have any feature requests or improvements you'd like to see, please let us know!                    

Información Básica de la Extensión

Nombre css scanner css scanner
ID ammlkccachoinkdojonhojkdojgniaki
URL Oficial https://chromewebstore.google.com/detail/css-scanner/ammlkccachoinkdojonhojkdojgniaki
Descripción The fastest, cleanest free css property viewer.
Tamaño del Archivo 339 KB
Cantidad de Instalaciones 1,000
Versión Actual 4.0
Última Actualización 2023-03-18
Fecha de Publicación 2023-03-18
Calificación 4.75/5 Total de 4 Calificaciones
Desarrollador tldralgos
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "css scanner",
    "manifest_version": 3,
    "version": "4.0",
    "description": "The fastest, cleanest free css property viewer.",
    "icons": {
        "16": "img\/logo16.png",
        "24": "img\/logo24.png",
        "32": "img\/logo32.png",
        "48": "img\/logo48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "css": [
                "css\/cssviewer.css"
            ],
            "js": [
                "js\/cssviewer.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_icon": "img\/logo16.png",
        "default_title": "Click to Run css scanner"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/trash.svg",
                "img\/copy.svg",
                "img\/code.svg",
                "img\/size.svg",
                "img\/font.svg",
                "img\/close.svg",
                "img\/options.svg",
                "img\/pause.svg",
                "img\/play.svg",
                "img\/arrow_down.svg",
                "img\/lightning.svg",
                "img\/logo128.png",
                "img\/bmc-button.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}