I use this code to attach my script into the tab.
tabs.activeTab.attach({
contentScript: "alert('test');"
});
})
It works fine, but i want to attach my code into the IFRAME. How can I do it?
I use this code to attach my script into the tab.
tabs.activeTab.attach({
contentScript: "alert('test');"
});
})
It works fine, but i want to attach my code into the IFRAME. How can I do it?