Focused Element
Highlight the focusing element and log it in console.
Focused Elementคืออะไร?
Focused Element เป็นส่วนขยายของ Chrome ที่พัฒนาโดย LiJunLe และคุณลักษณะหลักของมันคือ "Highlight the focusing element and log it in console."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Focused Element
ดาวน์โหลดไฟล์ส่วนขยาย Focused Element ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
During debugging a page, sometimes it is very hard to notice which element is focusing in the page. This extension will highlight the focusing element and log it in console. Even after turn off the extension, the developer can hover on the element in console to find back the element in DOM structure.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Focused Element |
ID | elaccagjpdmjkcjogbdmcpcplfinifbh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/focused-element/elaccagjpdmjkcjogbdmcpcplfinifbh |
คำอธิบาย | Highlight the focusing element and log it in console. |
ขนาดไฟล์ | 27.42 KB |
จำนวนการติดตั้ง | 1,140 |
เวอร์ชันปัจจุบัน | 0.2.0 |
อัปเดตครั้งล่าสุด | 2020-09-04 |
วันที่เผยแพร่ | 2019-04-20 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | LiJunLe |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/lijunle/chrome-extension-focused-element |
URL หน้าช่วยเหลือ | https://github.com/lijunle/chrome-extension-focused-element/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Focused Element", "description": "Highlight the focusing element and log it in console.", "version": "0.2.0", "author": "Junle Li", "icons": { "16": "icons\/active-16.png", "32": "icons\/active-32.png", "48": "icons\/active-48.png", "128": "icons\/active-128.png" }, "browser_action": { "default_title": "Enable", "default_icon": { "16": "icons\/inactive-16.png", "32": "icons\/inactive-32.png", "48": "icons\/inactive-48.png", "128": "icons\/inactive-128.png" } }, "permissions": [ "activeTab" ], "background": { "scripts": [ "lib\/background.js" ], "persistent": false } } |