如何在 Google Chrome 扩展的内容脚本中使用 jQuery 工具提示?

发布于 2024-10-30 13:58:20 字数 267 浏览 5 评论 0原文

我希望为所有受 chrome 扩展影响的网页上的某些元素提供工具提示。 jQuery UI 提供了工具提示功能,但我无法将它们用于内容脚本。

  1. 我需要对manifest.json 文件进行哪些更改?

  2. 如何让 $('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.

  1. What changes would I need to make to the manifest.json file?

  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦过后 2024-11-06 13:58:20

你肯定可以!

将其添加到您的清单中:

"content_scripts": 
[ {
      "all_frames": true,
      "css": ["css/xxx.css"],
      "js": ["js/jquery.js", "js/xxx.js"],
      "matches": ["http://*/*", "https://*/*"],
      "run_at": "document_start"
} ], 

然后您可以使用 jQuery,就像使用内容脚本的普通网页一样;)

For sure you can !

Add this on your manifest :

"content_scripts": 
[ {
      "all_frames": true,
      "css": ["css/xxx.css"],
      "js": ["js/jquery.js", "js/xxx.js"],
      "matches": ["http://*/*", "https://*/*"],
      "run_at": "document_start"
} ], 

Then you can use jQuery like if it was a normal web page using your content-script ;)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文