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 https://preflight.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "PreFlight let's anyone to generate unique CSS and XPath generators easily without opening the inspection tool with iframe support."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PreFlight Unique CSS and XPath Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |