How to resolve?
{
"name": "Metadata Extension",
"description": "Chrome extension to present tasy metadata information",
"version": "1.3",
"manifest_version": 3,
"icons": {
"128": "icon256.png"
},
"permissions": [
"activeTab",
"alarms",
"declarativeContent",
"storage",
"tabs",
"http://*/",
"https://*/"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"options_ui": {
"chrome_style": true,
"open_in_tab": false,
"page": "options.html"
},
"page_action": {
"default_title": "Tasy Extension",
"default_popup": "popup.html"
},
"content_scripts": [{
"matches": [
"http://*/*",
"https://*/*"
],
"exclude_globs": [
"/^.*:\/\/localhost(?!:3000\/.*$)(:.*)?\/.*$/"
],
"js": [
"content.js"
],
"css": [
"injected.css"
]
}],
"web_accessible_resources": [
"injected.js"
]
}