1
我想要使用外部JavaScript文件,使用jQuery的鉻擴展。但我一直得到這個愚蠢的錯誤。
Screenshot of error in chrome inspector.
任何幫助表示讚賞感謝!
popup.js
$(document).ready(function() {
$.ajax({url: "http://www.google.com", success: function(result) {
$("#report-details").html(result);
}});
});
popup.html
<!doctype html>
<html>
<head>
<title>TEST</title>
<script src="popup.js"></script>
<script src='./js/jquery.min.js'></script>
<script src='./js/jquery.js'></script>
</head>
<body>
<h1>TEST</h1>
<div id="report-details">
</div>
</body>
</html>
manifest.json的
{
"manifest_version": 2,
"name": "my ext",
"description": "fun ext",
"version": "1.0",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": ["http://*/*","https://*/*"],
"js": ["js/jquery.min.js"]
}
]
}
任何幫助是GRE非常感謝。 (我道歉,如果這是一個小白錯誤)
哇感謝您! (完全是noob錯誤) – Changerrs