1

Firefox WebExtension上工作。

当我打开一个新选项卡时,下面的代码有效,但是当我单击链接时它会更新任何当前选项卡。

如何使用query选择新标签? 还有另一种方法可以做到这一点吗?

/* Load Google when creates a new tab. */

function openMyPage() {
  //console.log("injecting");
   chrome.tabs.query({
     'currentWindow': true,
     'active': true
    // This will match all tabs to the pattern we specified
    }, function(tab) {
        // Go through all tabs that match the URL pattern
        for (var i = 0; i < tab.length; i++){
            // Update those tabs to point to the new URL
            chrome.tabs.update(
                tab[i].id, {
                    'url': 'http://google.com'
                }
            );
        }
    });
};

//Add openMyPage() as a listener when new tabs are created
chrome.tabs.onCreated.addListener(openMyPage);
4

1 回答 1

1

tabs.onCreated回调提供了一个参数,它是一个Tab对象。您不应该查询来获取它,您已经拥有它。

function openMyPage(tab) {
    chrome.tabs.update(
        tab.id, {
            'url': 'http://google.com'
        }
    );
};

请注意,这将不分青红皂白地针对新标签 - 甚至是用户通过“在新标签中打开链接”打开的标签。如果这不是您想要的,您将需要额外的逻辑来检测它是一个新标签页。

获得"tabs"许可后,该tab对象将url填充该属性。您可以使用它来过滤新标签。在 Chrome 中,应该是chrome://newtab/,在 Firefox 中应该是(我还没有测试过)about:homeabout:newtab.

于 2016-02-26T11:00:29.333 回答