PreFlight Unique CSS and XPath Generator
PreFlight let's anyone to generate unique CSS and XPath generators easily without opening the inspection tool with iframe support.
PreFlight Unique CSS and XPath Generatorคืออะไร?
PreFlight Unique CSS and XPath Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://preflight.com และคุณลักษณะหลักของมันคือ "PreFlight let's anyone to generate unique CSS and XPath generators easily without opening the inspection tool with iframe support."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PreFlight Unique CSS and XPath Generator
ดาวน์โหลดไฟล์ส่วนขยาย PreFlight Unique CSS and XPath Generator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Simply drag and drop the bullseye icon into any element. It does not matter it's in iframe or not. PreFlight is going to generate very smart XPath selectors like: Find any input which previous siblings have text equal to 'First name' //input[preceding-sibling::*[descendant::text()='First name']] Find label that has 'Username' then go up and find the input //label[text()='Username']/..//input This way even though the class names change or any html structures change your selector is less likely to break. Please contact us if you have any questions or feedback at [email protected]
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | PreFlight Unique CSS and XPath Generator |
ID | dphadcmpfbmlnokfbapmhepkfjakeblb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/preflight-unique-css-and/dphadcmpfbmlnokfbapmhepkfjakeblb |
คำอธิบาย | PreFlight let's anyone to generate unique CSS and XPath generators easily without opening the inspection tool with iframe support. |
ขนาดไฟล์ | 198 KB |
จำนวนการติดตั้ง | 185 |
เวอร์ชันปัจจุบัน | 1.0.5 |
อัปเดตครั้งล่าสุด | 2021-05-30 |
วันที่เผยแพร่ | 2020-06-12 |
คะแนน | 4.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | https://preflight.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://preflight.com |
URL หน้าช่วยเหลือ | https://help.preflight.com |
URL หน้านโยบายความเป็นส่วนตัว | https://preflight.com/privacy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PreFlight Unique CSS and XPath Generator", "version": "1.0.5", "description": "PreFlight let's anyone to generate unique CSS and XPath generators easily without opening the inspection tool with iframe support.", "homepage_url": "http:\/\/preflighthq.com", "manifest_version": 2, "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_title": "PreFlight Selector Generator" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/preflight-recorder-iframe-styles.css" ], "js": [ "content.js" ], "all_frames": true } ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "images\/preflight-logo.svg", "images\/Preflight-icon-gradient.svg", "images\/preflight-wordmark.svg", "images\/spinner.svg", "images\/check.svg", "images\/target.svg", "images\/bullseye.svg", "images\/flag.svg", "app\/appFrame.html", "css\/preflight-recorder.css", "css\/preflight-recorder-iframe-styles.css" ] } |