XPath Helper
Extract, edit, and evaluate XPath queries with ease.
XPath Helperคืออะไร?
XPath Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Adam Sadovsky และคุณลักษณะหลักของมันคือ "Extract, edit, and evaluate XPath queries with ease."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย XPath Helper
ดาวน์โหลดไฟล์ส่วนขยาย XPath Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
XPath Helper makes it easy to extract, edit, and evaluate XPath queries on any webpage. IMPORTANT: After installing this extension, you must reload any existing tabs or restart Chrome for the extension to work. Instructions: 1. Open a new tab and navigate to any webpage. 2. Hit Ctrl-Shift-X (or Command-Shift-X on OS X), or click the XPath Helper button in the toolbar, to open the XPath Helper console. 3. Hold down Shift as you mouse over elements on the page. The query box will continuously update to show the XPath query for the element below the mouse pointer, and the results box will show the results for the current query. 4. If desired, edit the XPath query directly in the console. The results box will immediately reflect your changes. 5. Repeat step (2) to close the console. If the console gets in your way, hold down Shift and then move your mouse over it; it will move to the opposite side of the page. One word of caution: When rendering HTML tables, Chrome inserts artificial tags into the DOM, which will consequently show up in queries extracted by this extension.ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ XPath Helper ID hgimnogjllphhhkhlmebbmlgjoejdpjl URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/xpath-helper/hgimnogjllphhhkhlmebbmlgjoejdpjl คำอธิบาย Extract, edit, and evaluate XPath queries with ease. ขนาดไฟล์ 247 KB จำนวนการติดตั้ง 309,515 เวอร์ชันปัจจุบัน 2.0.2 อัปเดตครั้งล่าสุด 2015-07-14 วันที่เผยแพร่ 2015-07-13 คะแนน 3.42/5 รวมทั้งหมด 578 คะแนน ผู้พัฒนา Adam Sadovsky ประเภทการชำระเงิน free เว็บไซต์ส่วนขยาย https://github.com/google/xpaf ภาษาที่รองรับ en manifest.json { "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "XPath Helper", "version": "2.0.2", "description": "Extract, edit, and evaluate XPath queries with ease.", "background": { "page": "background.html" }, "browser_action": { "default_icon": { "19": "static\/icon_19x19.png", "38": "static\/icon_38x38.png" } }, "content_scripts": [ { "matches": [ "" ], "css": [ "content.css" ], "js": [ "content.js" ] } ], "icons": { "16": "static\/icon_16x16.png", "32": "static\/icon_32x32.png", "48": "static\/icon_48x48.png", "128": "static\/icon_128x128.png" }, "web_accessible_resources": [ "bar.css", "bar.html", "bar.js" ] }