css scanner

The fastest, cleanest free css property viewer.

Apa itu css scanner?

css scanner adalah ekstensi Chrome yang dikembangkan oleh tldralgos, dan fitur utamanya adalah "The fastest, cleanest free css property viewer.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi css scanner

Unduh file ekstensi css scanner dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama css scanner css scanner
ID ammlkccachoinkdojonhojkdojgniaki
URL Resmi https://chromewebstore.google.com/detail/css-scanner/ammlkccachoinkdojonhojkdojgniaki
Deskripsi The fastest, cleanest free css property viewer.
Ukuran File 339 KB
Jumlah Instalasi 1,000
Versi Saat Ini 4.0
Terakhir Diperbarui 2023-03-18
Tanggal Publikasi 2023-03-18
Penilaian 4.75/5 Total 4 Penilaian
Pengembang tldralgos
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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": [
                ""
            ]
        }
    ]
}