I'm trying to do extensions for chrome and my html file does not recognize the js
File manifest.json
"content_scripts": [ {
"matches": ["https://*/*"],
"js": ["app.js"],// este js si lo reconoce
"css": ["app.css"]
} ],
"browser_action": {
"default_popup": "app.html",// este html si lo reconoce
"default_title": "capture!"
},
app.html file
<head>
<script src="function.js"></script> // este archivo js no lo reconoce
the structure of the tree is: