X-Ray Specs
Show the internals of a webpage
什么是X-Ray Specs?
X-Ray Specs是由http://red-robot.co.uk开发的Chrome扩展程序,该扩展的主要功能是“Show the internals of a webpage”。
扩展截图
下载X-Ray Specs扩展crx文件
下载X-Ray Specs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Quickly show the internal layout of a website. 扩展基本信息
| 名称 | |
| ID | dibgfligccpcboljaaicckpdhjolpcma |
| 官方URL | https://chrome.google.com/webstore/detail/dibgfligccpcboljaaicckpdhjolpcma |
| 简介 | Show the internals of a webpage |
| 文件大小 | 26.8 KB |
| 安装次数 | 36 |
| 当前版本 | 1.1 |
| 更新时间 | 2016-06-07 |
| 上架时间 | 2016-06-07 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | http://red-robot.co.uk |
| 付费类型 | free |
| 支持的语言 | 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"
]
} | |