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.」です。
拡張機能のスクリーンショット
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |