X-Ray Specs

Show the internals of a webpage

Apa itu X-Ray Specs?

X-Ray Specs adalah ekstensi Chrome yang dikembangkan oleh http://red-robot.co.uk, dan fitur utamanya adalah "Show the internals of a webpage".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi X-Ray Specs

Unduh file ekstensi X-Ray Specs 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

                        Quickly show the internal layout of a website.                    

Informasi Dasar Ekstensi

Nama X-Ray Specs X-Ray Specs
ID dibgfligccpcboljaaicckpdhjolpcma
URL Resmi https://chrome.google.com/webstore/detail/dibgfligccpcboljaaicckpdhjolpcma
Deskripsi Show the internals of a webpage
Ukuran File 26.8 KB
Jumlah Instalasi 36
Versi Saat Ini 1.1
Terakhir Diperbarui 2016-06-07
Tanggal Publikasi 2016-06-07
Penilaian 5.00/5 Total 1 Penilaian
Pengembang http://red-robot.co.uk
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "X-Ray Specs",
    "description": "Show the internals of a webpage",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "tabs"
    ],
    "browser_action": {
        "default_icon": "i\/icon.png"
    },
    "icons": {
        "128": "i\/x-ray_128x128.png"
    },
    "web_accessible_resources": [
        "css\/debug.css"
    ]
}