以chrome格式处理各个内容脚本

时间:2012-11-14 06:28:50

标签: google-chrome google-chrome-extension google-chrome-app

如果您的扩展程序将多个内容脚本注入单个页面,是否可以在页面上寻址特定内容脚本而不是广播到所有内容脚本?谢谢!

1 个答案:

答案 0 :(得分:0)

如果我理解正确,您可以在background.js中执行内容脚本,而不是在manifest.json中定义:

if (condition) {
  chrome.tabs.executeScript(null, { file: 'contentscript1.js' });
} else {
  chrome.tabs.executeScript(null, { file: 'contentscript2.js' });
}