X-Ray Specs
Show the internals of a webpage
Qu'est-ce que X-Ray Specs ?
X-Ray Specs est une extension Chrome développée par http://red-robot.co.uk, et sa fonction principale est "Show the internals of a webpage".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension X-Ray Specs
Téléchargez les fichiers d'extension X-Ray Specs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Quickly show the internal layout of a website.
Informations de Base sur l'Extension
Nom | |
ID | dibgfligccpcboljaaicckpdhjolpcma |
URL Officiel | https://chrome.google.com/webstore/detail/dibgfligccpcboljaaicckpdhjolpcma |
Description | Show the internals of a webpage |
Taille du Fichier | 26.8 KB |
Nombre d'Installations | 36 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2016-06-07 |
Date de Publication | 2016-06-07 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | http://red-robot.co.uk |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |