Custom Elements Locator

This extension will find any custom element on a page.

Qu'est-ce que Custom Elements Locator ?

Custom Elements Locator est une extension Chrome développée par pascalschilp, et sa fonction principale est "This extension will find any custom element on a page.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Custom Elements Locator

Téléchargez les fichiers d'extension Custom Elements Locator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Custom Elements Locator Custom Elements Locator
ID eccplgjbdhhakefbjfibfhocbmjpkafc
URL Officiel https://chromewebstore.google.com/detail/custom-elements-locator/eccplgjbdhhakefbjfibfhocbmjpkafc
Description This extension will find any custom element on a page.
Taille du Fichier 3.46 MB
Nombre d'Installations 225
Version Actuelle 1.6.0
Dernière Mise à Jour 2020-09-21
Date de Publication 2020-08-03
Évaluation 5.00/5 Total 3 Évaluations
Développeur pascalschilp
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.open-wc.org
URL de la Page d'Aide https://www.github.com/open-wc/locator
Langues Prises en Charge 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"
    ]
}