从网站获取 href 值到 Chrome 扩展程序
我正在制作一个扩展,我想要执行以下操作 -
假设我希望我的扩展仅在 xyz.com 上工作,其中包含以下行 -
<a href="xyz.com/abcd" class="abcd">abcd</a>
如何使用 javascript 将 xyz.com 的代码中的 href 值检索到我的扩展中?
I am making an extension and i want to do the following-
suppose i want my extension to work only on say, xyz.com, which contains the following line-
<a href="xyz.com/abcd" class="abcd">abcd</a>
How do I retrieve href value from xyz.com's code into my extension using javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的问题有点令人困惑:如果您尝试在打开域 xyz.com 中的页面时加载扩展程序,那么您可以 适当设置您的权限,它应该可以工作。
Your question is a little confusing: if you are trying to have your extension loaded whenever a page in the domain xyz.com is opened then you can just set your permissions appropriately and it should work.