Custom Elements Locator

This extension will find any custom element on a page.

什么是Custom Elements Locator?

Custom Elements Locator是由pascalschilp开发的Chrome扩展程序,该扩展的主要功能是“This extension will find any custom element on a page.”。

扩展截图

screenshot

下载Custom Elements Locator扩展crx文件

下载Custom Elements Locator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}