X-Ray Specs

Show the internals of a webpage

Cos'è X-Ray Specs?

X-Ray Specs è un'estensione di Chrome sviluppata da http://red-robot.co.uk, e la sua funzione principale è "Show the internals of a webpage".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione X-Ray Specs

Scarica i file di estensione X-Ray Specs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Quickly show the internal layout of a website.                    

Informazioni di Base sull'Estensione

Nome X-Ray Specs X-Ray Specs
ID dibgfligccpcboljaaicckpdhjolpcma
URL Ufficiale https://chrome.google.com/webstore/detail/dibgfligccpcboljaaicckpdhjolpcma
Descrizione Show the internals of a webpage
Dimensione del File 26.8 KB
Conteggio Installazioni 36
Versione Corrente 1.1
Ultimo Aggiornamento 2016-06-07
Data di Pubblicazione 2016-06-07
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore http://red-robot.co.uk
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}