Web Inspector
Have you ever wanted to know which is that stylish font used on a certain website? Or the text color used? Or have you ever wanted…
Web Inspectorคืออะไร?
Web Inspector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bensampaio และคุณลักษณะหลักของมันคือ "Have you ever wanted to know which is that stylish font used on a certain website? Or the text color used? Or have you ever wanted…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Inspector
ดาวน์โหลดไฟล์ส่วนขยาย Web Inspector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Have you ever wanted to know which is that stylish font used on a certain website? Or the text color used? Or have you ever wanted to know the dimensions of an image without having to download it? Or a audio / video source URL? If yes, this is the extension for you. Install Web Inspector on Chrome and on a certain page click on the extension icon. Then mouse over a certain element you are curious about and click on it. A window will be displayed around this item with information about the font used, the text color, the background color, the source URL (in case it is a multimedia item), among others. If you don't want to inspect any more element on the page just click on the extension icon again to turn it off. In case you would like to contribute you can find our GitHub page here: https://github.com/Anakin88/chrome-extension-web_inspector. Use it to inspect the Web. Hope you like it!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Web Inspector |
ID | enibedkmbpadhfofcgjcphipflcbpelf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/web-inspector/enibedkmbpadhfofcgjcphipflcbpelf |
คำอธิบาย | Have you ever wanted to know which is that stylish font used on a certain website? Or the text color used? Or have you ever wanted… |
ขนาดไฟล์ | 1.63 MB |
จำนวนการติดตั้ง | 20,000 |
เวอร์ชันปัจจุบัน | 0.6.0 |
อัปเดตครั้งล่าสุด | 2017-03-09 |
วันที่เผยแพร่ | 2017-03-08 |
คะแนน | 3.60/5 รวมทั้งหมด 30 คะแนน |
ผู้พัฒนา | bensampaio |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Anakin88/chrome-extension-web_inspector |
URL หน้าช่วยเหลือ | https://github.com/Anakin88/chrome-extension-web_inspector/wiki |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Inspector", "short_name": "WI", "version": "0.6.0", "author": "Bruno Sampaio", "default_locale": "en", "description": "", "icons": { "16": "img\/logo16.png", "48": "img\/logo48.png", "128": "img\/logo128.png" }, "background": { "scripts": [ "dist\/background.min.js" ] }, "browser_action": { "default_icon": "img\/icon_inactive.png", "name": "Click to activate or deactivate on current page." }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "dist\/general.min.css" ], "js": [ "dist\/jquery.min.js", "dist\/init.min.js" ] } ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |