X-Ray Specs
Show the internals of a webpage
X-Ray Specsคืออะไร?
X-Ray Specs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://red-robot.co.uk และคุณลักษณะหลักของมันคือ "Show the internals of a webpage"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย X-Ray Specs
ดาวน์โหลดไฟล์ส่วนขยาย 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"
]
} | |