使用后台脚本打开页面后,是否可以将内容脚本作为回调注入?

时间:2018-12-30 15:41:16

标签: javascript google-chrome-extension

我正在创建一个chrome扩展程序,它将从background script打开一个新页面,打开该页面后,我想在该页面上插入content script

manifest文件中,我声明了特定URL上的内容脚本表明,该js文件将在每次打开该网站时运行。我想要的是从background script打开网站时打开的那个时间。

background.js

chrome.tabs.create({url: "https://developer.chrome.com/extensions/tabs#method-create"}, function( tab ){
  // now what? I have the tab from the callback
  // and I have to inject `content` script into it.
  // I don't know the wrong nor the proper way to do it
})

我的期望是将内容脚本作为一些js文件注入到新创建的页面中,但是在这方面我没有任何结果。

0 个答案:

没有答案