Files
locator/manifest.json
github-actions 2bd8be0deb Version bump
2020-09-15 16:27:50 +00:00

36 lines
714 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"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"dist/background_script.js"
]
},
"permissions": [
"activeTab",
"background"
]
}