CSS and XPath checker

A helper tool for to confirm CSS and XPath selector.

Co to jest CSS and XPath checker?

CSS and XPath checker to rozszerzenie Chrome opracowane przez https://takaki-web.media-as.org, a jego główną funkcją jest „A helper tool for to confirm CSS and XPath selector.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia CSS and XPath checker

Pobierz pliki rozszerzeń CSS and XPath checker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa CSS and XPath checker CSS and XPath checker
ID aoinfihhckpkkcpholfhmkeplbhddipe
Oficjalny URL https://chromewebstore.google.com/detail/css-and-xpath-checker/aoinfihhckpkkcpholfhmkeplbhddipe
Opis A helper tool for to confirm CSS and XPath selector.
Rozmiar pliku 75.17 KB
Liczba instalacji 23,384
Aktualna Wersja 0.23.0
Ostatnia Aktualizacja 2023-10-03
Data Publikacji 2019-11-07
Ocena 2.73/5 Łącznie 44 Oceny
Deweloper https://takaki-web.media-as.org
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://gitlab.com/takatan/cxchecker-extension
Adres URL Strony Pomocy https://gitlab.com/takatan/cxchecker-extension
Obsługiwane Języki 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": [
                ""
            ]
        }
    ]
}