所以,我正在尝试做一个基本的 Google Chrome Hello World 扩展。有人可以解释一下为什么下面的代码不起作用吗?谢谢。
popup.js:
document.getElementById("foobar").innerHTML = "Hello Chrome Extensions";
popup.html:
<!doctype html>
<html>
<head>
<title>Hello Chrome</title>
<script src="popup.js"></script>
<div id="foobar"></div>
</head>
<body>
</body>
</html>
我正在关注http://developer.chrome.com/extensions/getstarted.html的“框架” 。