CSS Debugger

A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.

Apa itu CSS Debugger?

CSS Debugger adalah ekstensi Chrome yang dikembangkan oleh Mathias Meldgaard Pedersen, dan fitur utamanya adalah "A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi CSS Debugger

Unduh file ekstensi CSS Debugger 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

                        A simple extension that injects debug styles into any page helping you debug style and structure issues.                    

Informasi Dasar Ekstensi

Nama CSS Debugger CSS Debugger
ID jmlihgplnddolhopaoengncklepinhgc
URL Resmi https://chromewebstore.google.com/detail/css-debugger/jmlihgplnddolhopaoengncklepinhgc
Deskripsi A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.
Ukuran File 7.27 KB
Jumlah Instalasi 1,104
Versi Saat Ini 0.1
Terakhir Diperbarui 2020-04-07
Tanggal Publikasi 2020-04-02
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Mathias Meldgaard Pedersen
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi http://www.mathiaspedersen.dk
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CSS Debugger",
    "version": "0.1",
    "description": "A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.",
    "permissions": [
        "tabs"
    ],
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "CSS Debugger",
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    }
}