X-Ray Specs
Show the internals of a webpage
Wat is X-Ray Specs?
X-Ray Specs is een Chrome-extensie ontwikkeld door http://red-robot.co.uk, en de belangrijkste functie is "Show the internals of a webpage".
Extensie Screenshots
Download het CRX-bestand van de extensie X-Ray Specs
Download X-Ray Specs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Quickly show the internal layout of a website.
Basisinformatie over de Extensie
Naam | |
ID | dibgfligccpcboljaaicckpdhjolpcma |
Officiële URL | https://chrome.google.com/webstore/detail/dibgfligccpcboljaaicckpdhjolpcma |
Beschrijving | Show the internals of a webpage |
Bestandsgrootte | 26.8 KB |
Aantal Installaties | 36 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2016-06-07 |
Publicatiedatum | 2016-06-07 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | http://red-robot.co.uk |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |