mirror of
https://github.com/open-wc/locator.git
synced 2026-03-10 08:51:21 +00:00
35 lines
682 B
JSON
35 lines
682 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Custom Elements Locator",
|
|
"description": "This extension will find any custom element on a page.",
|
|
"version": "1.4.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"
|
|
]
|
|
}
|
|
],
|
|
"background": {
|
|
"scripts": [
|
|
"dist/background_script.js"
|
|
]
|
|
},
|
|
"permissions": [
|
|
"activeTab",
|
|
"background"
|
|
]
|
|
}
|