X-Ray Specs
Show the internals of a webpage
What is X-Ray Specs?
X-Ray Specs is a Chrome extension developed by http://red-robot.co.uk, and its main feature is "Show the internals of a webpage".
Extension Screenshots
Download X-Ray Specs Extension CRX File
Download X-Ray Specs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Quickly show the internal layout of a website.
Extension Basic Information
Name | |
ID | dibgfligccpcboljaaicckpdhjolpcma |
Official URL | https://chrome.google.com/webstore/detail/dibgfligccpcboljaaicckpdhjolpcma |
Description | Show the internals of a webpage |
File Size | 26.8 KB |
Installation Count | 36 |
Current Version | 1.1 |
Last Updated | 2016-06-07 |
Publish Date | 2016-06-07 |
Rating | 5.00/5 Total 1 Ratings |
Developer | http://red-robot.co.uk |
Payment Type | free |
Supported Languages | 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" ] } |