2

比如说,Firefox 浏览器窗口中有 10 个选项卡。

如何通过 Firefox 扩展代码在第二个选项卡之后添加一个选项卡?

gBrowser.addTab方法仅附加到选项卡列表。

4

1 回答 1

3

没有简单、直接的方式来做你想做的事。如果您真的直接在特定索引处打开选项卡,那么您可以查看代码 gBrowser.addTab()代码 gBrowser.moveTabTo();复制它们并修改它们以执行您想要的操作。请注意,此代码是 JavaScript 的 XML 表示形式。因此,如果您想使用它,您将需要重新格式化它。

但是,执行此操作的简单方法是打开选项卡gBrowser.addTab(). 然后,将其移动到您想要的索引处,gBrowser.moveTabTo().

以下代码将执行您想要的操作。当我将此代码附加到按钮时,选项卡在视觉上似乎在指定的索引处打开。它没有选项卡的末尾首先打开,然后似乎移动了。这样做,添加然后移动,而不是在指定索引处实际添加选项卡,用户没有明显的区别。

function handleButtonCommandEvent(event) {
    let window = event.view;

    //Create the window variable if it does not exist. It should
    //  already be defined from event.view.
    //  This should work from any Firefox context.
    if (typeof window === "undefined") {
        //If there is no window defined, get the most recent.
        var window=Components.classes["@mozilla.org/appshell/window-mediator;1"]
                             .getService(Components.interfaces.nsIWindowMediator)
                             .getMostRecentWindow("navigator:browser");
    }

    //Test addTabAtIndex()
    addTabAtIndexInWindow(window, 2, "http://www.ebay.com/")
}

/**
 * Open a tab in specified window at index.
 */
function addTabAtIndexInWindow(window, index, URL, referrerURI, charset, postData,
                       owner, allowThirdPartyFixup ) {

    //Get the  gBrowser for the specified window
    let winGBrowser = window.gBrowser;

    //Open a new tab:
    let newTab = winGBrowser.addTab(URL, referrerURI, charset, postData,
                                    owner, allowThirdPartyFixup );
    //Immediately move it to the index desired:
    winGBrowser.moveTabTo(newTab,index);

}
于 2016-03-08T11:26:23.617 回答