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开发的Chrome扩展程序,该扩展的主要功能是“PreFlight let's anyone to generate unique CSS and XPath generators easily without opening the inspection tool with iframe support.”。

扩展截图

screenshot
screenshot
screenshot

下载PreFlight Unique CSS and XPath Generator扩展crx文件

下载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 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"
    ]
}