CSS and XPath checker

A helper tool for to confirm CSS and XPath selector.

Hvad er CSS and XPath checker?

CSS and XPath checker er en Chrome-udvidelse udviklet af https://takaki-web.media-as.org, og dens hovedfunktion er "A helper tool for to confirm CSS and XPath selector.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download CSS and XPath checker-udvidelses-CRX-fil

Download CSS and XPath checker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This tool helps to check CSS and XPath selector. It displays elements which specified by selector with highlight.                    

Grundlæggende oplysninger om udvidelsen

Navn CSS and XPath checker CSS and XPath checker
ID aoinfihhckpkkcpholfhmkeplbhddipe
Officiel URL https://chromewebstore.google.com/detail/css-and-xpath-checker/aoinfihhckpkkcpholfhmkeplbhddipe
Beskrivelse A helper tool for to confirm CSS and XPath selector.
Filstørrelse 75.17 KB
Antal Installationer 23,384
Nuværende Version 0.23.0
Senest Opdateret 2023-10-03
Udgivelsesdato 2019-11-07
Bedømmelse 2.73/5 Samlet 44 Bedømmelser
Udvikler https://takaki-web.media-as.org
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://gitlab.com/takatan/cxchecker-extension
Hjælpeside-URL https://gitlab.com/takatan/cxchecker-extension
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CSS and XPath checker",
    "author": "TANIGUCHI Takaki",
    "version": "0.23.0",
    "manifest_version": 3,
    "description": "A helper tool for to confirm CSS and XPath selector.",
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "24": "assets\/icons\/icon-24.png",
        "64": "assets\/icons\/icon-64.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content\/content.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_icon": {
            "16": "assets\/icons\/icon-16.png",
            "48": "assets\/icons\/icon-48.png"
        },
        "default_title": "CSS and XPath checker",
        "default_popup": "popup\/index.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*",
                "content\/*",
                "options\/*",
                "popup\/*",
                "background\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}