我正在制作一个 chrome 扩展,我将拥有的一些功能将使用 jQuery。我在网上找不到可行的解决方案时遇到了麻烦。
核心.js:
$(document).ready(function(){
init();
});
function init()
{
$(":button").click(function(){
console.log("test");
//more code here...
});
}
扩展名.html:
<html>
<head>
<title>awesome</title>
<script src="scripts/core.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
</head>
<body>
<button id="getThem">GET!</button>
</body>
</html>
在我的清单中,我有名称、版本、manifest_version (2)、描述、browser_action->default_popup (extention.html),我不知道该放什么。你能帮我把这些基本元素拼凑起来吗?