如何在 Google Chrome 扩展的内容脚本中使用 jQuery 工具提示?
我希望为所有受 chrome 扩展影响的网页上的某些元素提供工具提示。 jQuery UI 提供了工具提示功能,但我无法将它们用于内容脚本。
我需要对manifest.json 文件进行哪些更改?
如何让 $('tag').tooltip() 工作?
PS:我的初步研究表明,在正常的网页 JS 绑定中使用 jQuery 与在 chrome 扩展中使用 jQuery 工具提示不同。
提前致谢!
I want to have a tooltip for certain elements on all those web pages which are affected by my chrome extension. The jQuery UI provides tooltip functionalities but I am not able to use them into a content script.
What changes would I need to make to the manifest.json file?
How to get the $('tag').tooltip() working?
PS : Initial research from my end says that using jQuery in a normal web-page-JS tie-up is different from using jQuery tooltip in a chrome extension.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你肯定可以!
将其添加到您的清单中:
然后您可以使用 jQuery,就像使用内容脚本的普通网页一样;)
For sure you can !
Add this on your manifest :
Then you can use jQuery like if it was a normal web page using your content-script ;)