这似乎是最简单的事情,但它只是不工作。在普通浏览器中,.html 和 .js 文件可以完美运行,但在 Chrome/Firefox 扩展程序中,该onClick
功能无法执行应有的功能。
.js 文件:
function hellYeah(text) {
document.getElementById("text-holder").innerHTML = text;
}
.html 文件:
<!doctype html>
<html>
<head>
<title>
Getting Started Extension's Popup
</title>
<script src="popup.js"></script>
</head>
<body>
<div id="text-holder">
ha
</div>
<br />
<a onClick=hellYeah("xxx")>
hyhy
</a>
</body>
</html>
所以基本上一旦用户点击“hyhy”,“ha”应该变成“xxx”。再一次 - 它在浏览器中完美运行,但在扩展程序中不起作用。你知道为什么吗?以防万一我也在下面附加 manifest.json。
清单.json:
{
"name": "My First Extension",
"version": "1.0",
"manifest_version": 2,
"description": "The first extension that I made.",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"http://api.flickr.com/"
]
}