gpt4 book ai didi

google-chrome-extension - Google Chrome 内容脚本中的 jQuery?

转载 作者:行者123 更新时间:2023-12-01 12:43:51 24 4
gpt4 key购买 nike

我将如何在我的 Google Chrome 内容脚本中包含 jQuery 库?我试过了,当然没有结果。我应该使用 <script src="..." /></script> ,或者是否有不同/更好的方法来解决它?提前致谢!

最佳答案

将它放入您的背景 html 并不能满足您的要求。您需要在 manifest.json 中提及它,如下所示:

{
"name": "MyExtension",
"version": "0.1",
"description": "blah blah",
"background_page": "background.html",
"content_scripts": [
{
"matches": ["http://*/*","https://*/*"],
"css": ["extension.css"],
"js": ["jquery-1.4.2.js", "extension.js"]
}
]
}

关于google-chrome-extension - Google Chrome 内容脚本中的 jQuery?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3209790/

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