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
官方網址 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"
    ]
}