我正在创建一个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
文件注入到新创建的页面中,但是在这方面我没有任何结果。