在当前打开的选项卡的正文中附加html

时间:2013-04-29 10:43:57

标签: google-chrome-extension

我想在当前打开的标签的正文中附加html。当我把我的代码放在后台js中时,它会在background.html中附加html,当我在poPup js中使用相同的代码时,它会将它附加到poPup.hmtl上。我希望myDiv能够附加到当前打开的tab html。有使用

的代码
var myDiv = document.createElement("div");
myDiv.style.backgroundColor = "rgb("+ r +","+ g +","+ b +")";
myDiv.style.position        = "fixed";
myDiv.style.width           = "500px";
myDiv.style.height          = 200 + "px";
myDiv.style.top             = 200 + "px";
myDiv.innerHTML = "hi this is test";
Document.getElementsByTagName("body")[0].appendChild(myDiv);

1 个答案:

答案 0 :(得分:1)

您应该将内容脚本注入当前打开的选项卡,然后从那里运行代码。