如何使用chrome API

时间:2018-02-12 21:13:28

标签: google-chrome google-chrome-extension google-chrome-devtools

说我有这个:

   chrome.tabs.create({}, function(tab){

   });

我正在查看第一个参数的选项 - https://developer.chrome.com/extensions/tabs#method-create

似乎没有选择让DevTools自动打开,但我想知道选项卡上是否有方法,打开DevTools,如下所示:

   chrome.tabs.create({}, function(tab){
        tab.openDevTools();
   });

这有可能吗?

0 个答案:

没有答案