css scanner

The fastest, cleanest free css property viewer.

What is css scanner?

css scanner is a Chrome extension developed by tldralgos, and its main feature is "The fastest, cleanest free css property viewer.".

Extension Screenshots

screenshot
screenshot

Download css scanner Extension CRX File

Download css scanner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name css scanner css scanner
ID ammlkccachoinkdojonhojkdojgniaki
Official URL https://chromewebstore.google.com/detail/css-scanner/ammlkccachoinkdojonhojkdojgniaki
Description The fastest, cleanest free css property viewer.
File Size 339 KB
Installation Count 1,000
Current Version 4.0
Last Updated 2023-03-18
Publish Date 2023-03-18
Rating 4.75/5 Total 4 Ratings
Developer tldralgos
Email [email protected]
Payment Type free
Supported Languages 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": [
                ""
            ]
        }
    ]
}