Custom Elements Locator

This extension will find any custom element on a page.

Co to jest Custom Elements Locator?

Custom Elements Locator to rozszerzenie Chrome opracowane przez pascalschilp, a jego główną funkcją jest „This extension will find any custom element on a page.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Custom Elements Locator

Pobierz pliki rozszerzeń Custom Elements Locator 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

                        Chrome extension to find custom elements on a page.

Optionally, you can choose to save found custom elements to the database, and have them showcased on wild.open-wc.org, so long as the page is publicly available.

No personal information is, or will ever be stored, and this feature is completely opt-in.

Made with love by www.open-wc.org                    

Podstawowe informacje o rozszerzeniu

Nazwa Custom Elements Locator Custom Elements Locator
ID eccplgjbdhhakefbjfibfhocbmjpkafc
Oficjalny URL https://chromewebstore.google.com/detail/custom-elements-locator/eccplgjbdhhakefbjfibfhocbmjpkafc
Opis This extension will find any custom element on a page.
Rozmiar pliku 3.46 MB
Liczba instalacji 225
Aktualna Wersja 1.6.0
Ostatnia Aktualizacja 2020-09-21
Data Publikacji 2020-08-03
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper pascalschilp
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.open-wc.org
Adres URL Strony Pomocy https://www.github.com/open-wc/locator
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Custom Elements Locator",
    "description": "This extension will find any custom element on a page.",
    "version": "1.6.0",
    "icons": {
        "16": "meta_assets\/icon16.png",
        "48": "meta_assets\/icon48.png",
        "128": "meta_assets\/icon128.png"
    },
    "browser_action": {
        "default_icon": "meta_assets\/icon.png",
        "default_popup": "dist\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "dist\/content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "dist\/background_script.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "background"
    ]
}