Вот background.js
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
'outerBounds': {
'width': 400,
'height': 500
}
});
});
Вот манифест
{
"manifest_version": 2,
"name": "Codelab",
"version": "1",
"icons": {
"128": "icon_128.png"
},
"permissions": [],
"app": {
"background": {
"scripts": ["background.js"]
}
}
}
Это index
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<script src="js.js"></script>
</head>
<body>
<button id="b" type="button">click me</button>
</body>
</html>
Это js
document.addEventListener('DOMContentLoaded', function () {
function f(){
alert("Привет")
}
document.getElementById("b").addEventListener('click', f);
})
ни алерт, ни консоль, ни чего не показывается, почему?