gpt4 book ai didi

javascript - JS 不会在扩展中运行

转载 作者:行者123 更新时间:2023-12-02 17:20:15 32 4
gpt4 key购买 nike

我正在制作一个 Chrome 扩展,当我在 Chrome 中尝试该扩展时,java 脚本将无法运行但如果我在常规选项卡中打开它,它就可以正常工作。

唯一应该发生的事情是控制台中应该有一个日志并在单击按钮时发出警报。

popup.html 文件

<html>
<head>
<title> </title>
</head>
<body>

<h1>Enter key word</h1>
<input id="input" type="text">
<input id ="keyWord" type="submit" value="Hide the thingy"/>

<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.js"></script>
<script type="text/javascript" src="extjs.js"></script>

</body>
</html>

extjs.js 文件

$(document).ready(function(){

console.log("sdfsdfsdfsdfs");
$("#keyWord").click(function(){

var input = document.getElementById("input");
console.log(input);
console.log("sdfsdfsdfsdfs");
alert("sdfsdfsdf");

});
});

manifest.json 文件

{
"manifest_version": 2,
"name": "Hello World!",
"version": "1.0",
"description": "Chrome extension",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
}
}

最佳答案

问题是您从外部 CDN 加载 jQuery 的方式违反了 Content Security Policy 。要解决此问题,您可以下载 jquery,将其放在扩展目录中,然后使用 <script type="text/javascript" src="jquery.js"></script> 加载它。 .

关于javascript - JS 不会在扩展中运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24027385/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com