Custom Elements Locator
This extension will find any custom element on a page.
Wat is Custom Elements Locator?
Custom Elements Locator is een Chrome-extensie ontwikkeld door pascalschilp, en de belangrijkste functie is "This extension will find any custom element on a page.".
Extensie Screenshots
Download het CRX-bestand van de extensie Custom Elements Locator
Download Custom Elements Locator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | eccplgjbdhhakefbjfibfhocbmjpkafc |
| Officiële URL | https://chromewebstore.google.com/detail/custom-elements-locator/eccplgjbdhhakefbjfibfhocbmjpkafc |
| Beschrijving | This extension will find any custom element on a page. |
| Bestandsgrootte | 3.46 MB |
| Aantal Installaties | 225 |
| Huidige Versie | 1.6.0 |
| Laatst Bijgewerkt | 2020-09-21 |
| Publicatiedatum | 2020-08-03 |
| Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | pascalschilp |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://www.open-wc.org |
| Help Pagina-URL | https://www.github.com/open-wc/locator |
| Ondersteunde Talen | 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"
]
} | |