谷歌浏览器帮助
我想做一个扩展,在用户访问的每个页面上突出显示某个单词(例如食物)。我很好奇如何使用谷歌浏览器扩展来做到这一点。
I want to make an extension that highlights a certain word (for example food) on every page the person visits. I was curious as how to do this, with a google chrome extension.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需使用内容脚本就应该能够做到这一点。在您的内容脚本 JS 文件中,此行应该可以解决问题(假设您还在 JS 内容脚本包含中包含 jQuery):
并在内容脚本包含的 CSS 文件中定义
highlighted
类。You should be able to do this just using content scripts. In your content script JS file, this line should do the trick (assuming you also include jQuery in your JS content script includes):
And define the
highlighted
class in a CSS file in your content script includes.