Custom Elements Locator

This extension will find any custom element on a page.

Custom Elements Locator क्या है?

Custom Elements Locator pascalschilp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will find any custom element on a page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Custom Elements Locator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Custom Elements Locator Custom Elements Locator
ID eccplgjbdhhakefbjfibfhocbmjpkafc
आधिकारिक URL https://chromewebstore.google.com/detail/custom-elements-locator/eccplgjbdhhakefbjfibfhocbmjpkafc
विवरण This extension will find any custom element on a page.
फ़ाइल का आकार 3.46 MB
स्थापना संख्या 225
वर्तमान संस्करण 1.6.0
अंतिम अपडेट 2020-09-21
प्रकाशन तिथि 2020-08-03
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर pascalschilp
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.open-wc.org
सहायता पृष्ठ URL https://www.github.com/open-wc/locator
समर्थित भाषाएँ 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"
    ]
}