在一个新的chrome隐身窗口中打开两个标签

gk7wooem  于 2023-05-04  发布在  Go
关注(0)|答案(1)|浏览(129)

我期待着打开一个新的隐身窗口在 chrome 与两个标签。我有:

chrome.tabs.query({
                      'active': true,
                      'windowId': chrome.windows.WINDOW_ID_CURRENT
                  },
                  function(tabs) {
                      var url = tabs[0].url;
                      chrome.windows.create({"url": url,
                                             "incognito": true});
                  }
);

但我不知道如何添加chrome.tabsgoogle.com在同一个隐身标签中的新标签中打开www.example.com。
这可能吗?
另外,我无法在隐身窗口上获得焦点。当我离开“incgonito”时,我可以获得焦点:真的,但不是当我这样添加时:

chrome.tabs.query({
                  'active': true,
                  'windowId': chrome.windows.WINDOW_ID_CURRENT
                  },
                  function(tabs) {
                      var url = tabs[0].url;
                      var urlIntent = "http://google.com";
                      chrome.windows.create({
                                             "url": url,
                                             focused: true,
                                             "incognito": true
                                             },
                                             function(window){
                                                chrome.windows.update(
                                                        window.id, 
                                                        {focused: true})
                                             });
                  }
);

相关问题