几周前我刚刚开始学习JS,并且正在尝试构建Chrome扩展程序。我已经构建了manifest.json
,popup.html
,popup.js
和content.js
文件。
当我尝试在Chrome上运行后台页面控制台以查看popup.js
是否正常工作时,我一直收到错误:
Uncaught TypeError: Cannot read property 'addEventListener' of null
at popup.js:8
我已经尝试将html中的脚本移动到正文的底部,但它仍然以错误结束并尝试实现:
document.addEventListener('DOMContentLoaded', function () {
// My code here.. ( Your code here )
});
在我的popup.js
和windows.onload
方法中,但仍然无法摆脱错误。
如果有人可以请指出我的代码中的任何错误并告诉我有什么问题我会非常感激。感谢
POPUP HTML
<!DOCTYPE html>
<html>
<head>
<title>Like IG Links</title>
</head>
<body>
<h3><center>Paste Links Below</center></h3>
<hr>
<textarea rows="10" cols="60" id="urls"></textarea>
<br>
<textarea rows="1" cols="5" id="counter" disabled></textarea>
<br>
<br>
<button type="submit" align="center" style="width:60px;"
id="start">Start</button>
<br>
<br>
<button type="submit" align="right" style="width:60px;"
id="stop">Stop</button>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>
CONTENT JS
console.log('CHROME');
POPUP JS
console.log('background running');
function loadUrls() {
console.log("123");
}
var startbutton = document.getElementById("start");
startbutton.addEventListener('click', loadUrls);
MANIFEST JSON
{
"manifest_version": 2,
"name": "Like IG Links",
"version": "1.0",
"description": "Like IG Links",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": ["content.js"]
}
],
"background": {
"scripts": ["popup.js"]
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": ["tabs", "storage", "activeTab"]
}
答案 0 :(得分:1)
删除清单的后台脚本部分。更新扩展名后,错误应消失。在我正在开发的扩展中,HTML和清单中有jquery.js和popup.js。清单的后台脚本标签用于跟踪浏览器事件并持续对其进行响应的逻辑,而不用于扩展HTML后面的js。