CSS and XPath checker

A helper tool for to confirm CSS and XPath selector.

Wat is CSS and XPath checker?

CSS and XPath checker is een Chrome-extensie ontwikkeld door https://takaki-web.media-as.org, en de belangrijkste functie is "A helper tool for to confirm CSS and XPath selector.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie CSS and XPath checker

Download CSS and XPath checker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam CSS and XPath checker CSS and XPath checker
ID aoinfihhckpkkcpholfhmkeplbhddipe
Officiële URL https://chromewebstore.google.com/detail/css-and-xpath-checker/aoinfihhckpkkcpholfhmkeplbhddipe
Beschrijving A helper tool for to confirm CSS and XPath selector.
Bestandsgrootte 75.17 KB
Aantal Installaties 23,384
Huidige Versie 0.23.0
Laatst Bijgewerkt 2023-10-03
Publicatiedatum 2019-11-07
Beoordeling 2.73/5 Totaal 44 Beoordelingen
Ontwikkelaar https://takaki-web.media-as.org
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://gitlab.com/takatan/cxchecker-extension
Help Pagina-URL https://gitlab.com/takatan/cxchecker-extension
Ondersteunde Talen 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": [
                ""
            ]
        }
    ]
}