Firefox 扩展 - 将元素添加到正文
我想在每个 javascript 的 Firefox 扩展中向正文添加一个元素。 document.write(“广告”); 不起作用。 - 源代码中没有结果。 我确定 JS 已执行,因为我有一个alert();在这个地方。 有可能吗?
/edit:必须使用内容.document.write
I want to add a element to the body in my Firefox Extension per javascript.
document.write("ads");
doesn't work. - no result in the sourcecode.
I'm sure the JS is executed, because I have an alert(); on this place.
It's possible?
/edit: have to use content.document.write
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用此代码将元素注入 HTML:
You should use this code to inject element into HTML: