Google Chrome Content Script中的jQuery?

我如何去包括我的谷歌浏览器内容脚本中的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"] } ] } 

以上答案有效。 另一个使用注入的答案(这是我第一次find这个页面的时候真正想找的东西)在这里:

谷歌浏览器扩展:如何在程序化注入的内容脚本中包含jQuery?