Files
locator/manifest.json
github-actions cb938b6530 Version bump
2023-01-02 12:41:12 +00:00

38 lines
743 B
JSON

{
"manifest_version": 2,
"name": "Custom Elements Locator",
"description": "This extension will find any custom element on a page.",
"version": "1.12.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"
]
}