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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    ]
}