X-Ray Specs
Show the internals of a webpage
Vad är X-Ray Specs?
X-Ray Specs är en Chrome-tillägg utvecklad av http://red-robot.co.uk, och dess huvudfunktion är "Show the internals of a webpage".
Tilläggsskärmbilder
Ladda ner X-Ray Specs-förlängningens CRX-fil
Ladda ner X-Ray Specs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Quickly show the internal layout of a website.
Grundläggande Information om Tillägg
Namn | |
ID | dibgfligccpcboljaaicckpdhjolpcma |
Officiell webbadress | https://chrome.google.com/webstore/detail/dibgfligccpcboljaaicckpdhjolpcma |
Beskrivning | Show the internals of a webpage |
Filstorlek | 26.8 KB |
Antal Installationer | 36 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2016-06-07 |
Publiceringsdatum | 2016-06-07 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | http://red-robot.co.uk |
Betalningssätt | free |
Stödda Språk | 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" ] } |