HTML DOM Navigation
HTML DOM Navigation lets you view the node tree in a simple and easy way. IRB would be really useful for Watir automation.
HTML DOM Navigationคืออะไร?
HTML DOM Navigation เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hkokila และคุณลักษณะหลักของมันคือ "HTML DOM Navigation lets you view the node tree in a simple and easy way. IRB would be really useful for Watir automation."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HTML DOM Navigation
ดาวน์โหลดไฟล์ส่วนขยาย HTML DOM Navigation ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
I have developed this extension mainly for fetching the DOM quickly since it might take some time in the Watir automation. -Click on the ‘HTML DOM Navigation’ icon at the right top of the page once the webpage loads completely -Hover the mouse over any element in the page to view the IRB format and the top five ancestors of an element -Right click on the page and select the ‘HTML DOM Navigation -> Tree Format’ option in the Context-Menu to view the tree format (of an entire body tag) -To disable, click on the icon again **You can copy the content using ‘ctrl+c’ **You can scroll the content using up-arrow and down-arrow Note: If the copy/scroll doesn’t work, click anywhere on the page to focus on it and try again Privacy: This tool doesn’t store any of your data
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | HTML DOM Navigation |
ID | eimpgjcahblfpdgiknmbmglcafegimil |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/html-dom-navigation/eimpgjcahblfpdgiknmbmglcafegimil |
คำอธิบาย | HTML DOM Navigation lets you view the node tree in a simple and easy way. IRB would be really useful for Watir automation. |
ขนาดไฟล์ | 13.89 KB |
จำนวนการติดตั้ง | 3,772 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2016-10-24 |
วันที่เผยแพร่ | 2016-10-24 |
คะแนน | 4.72/5 รวมทั้งหมด 18 คะแนน |
ผู้พัฒนา | hkokila |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HTML DOM Navigation", "manifest_version": 2, "version": "1.0", "description": "HTML DOM Navigation lets you view the node tree in a simple and easy way. IRB would be really useful for Watir automation.", "background": { "page": "background.html" }, "icons": { "128": "img\/icon.png" }, "browser_action": { "default_icon": "img\/icon.png", "default_title": "HTML DOM Navigation" }, "permissions": [ "activeTab", "contextMenus" ] } |