Custom Elements Locator
This extension will find any custom element on a page.
Was ist Custom Elements Locator?
Custom Elements Locator ist eine Chrome-Erweiterung, die von pascalschilp entwickelt wurde, und ihr Hauptmerkmal ist "This extension will find any custom element on a page.".
Erweiterungsscreenshots
Custom Elements Locator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Custom Elements Locator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | eccplgjbdhhakefbjfibfhocbmjpkafc |
| Offizielle URL | https://chromewebstore.google.com/detail/custom-elements-locator/eccplgjbdhhakefbjfibfhocbmjpkafc |
| Beschreibung | This extension will find any custom element on a page. |
| Dateigröße | 3.46 MB |
| Installationsanzahl | 225 |
| Aktuelle Version | 1.6.0 |
| Letztes Update | 2020-09-21 |
| Veröffentlichungsdatum | 2020-08-03 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | pascalschilp |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://www.open-wc.org |
| Hilfeseite URL | https://www.github.com/open-wc/locator |
| Unterstützte Sprachen | 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"
]
} | |