设置Firefox扩展的弹出窗口标题

时间:2018-05-29 15:20:50

标签: javascript firefox firefox-webextensions

我正在构建可在多个浏览器中使用的浏览器扩展程序。单击浏览器操作后,将创建一个显示扩展程序页面的弹出窗口。 Chrome使用弹出页面的标题标记作为弹出窗口的标题,但Firefox并不是。

相反,我得到以下内容:

enter image description here

为什么Firefox不使用页面标题?为了解决这个问题,我在windows.create回调中设置了窗口标题,但那也没有。

这是打开弹出窗口的background.js脚本。

'use strict';

let browser = (function () {
    return window.msBrowser ||
        window.browser ||
        window.chrome;
})();

var popupWindowId = false;

browser.browserAction.onClicked.addListener(function() {
    // Open the popup if not already open. If open, focus on it.
    if(popupWindowId === false) {
        popupWindowId = true;
        browser.windows.create({
            'url': 'index.html',
            'type': 'popup',
            'height': 525,
            'width': 350
        }, function(win) {
            win.title = 'My Title';
            popupWindowId = win.id;
            firefoxWorkaroundForBlankPanel();
        });

        return;
    } else if(typeof popupWindowId === 'number'){
        // The window is open, and the user clicked the button.
        // Focus the window.
        browser.windows.update(popupWindowId, { focused: true });
    }
});

browser.windows.onRemoved.addListener(function (winId){
    if(popupWindowId === winId){
        popupWindowId = false;
    }
});

// workaround for bug https://bugzilla.mozilla.org/show_bug.cgi?id=1425829
// bug causes popup to appear blank until resized
async function firefoxWorkaroundForBlankPanel () {
    const {id, width, height} = await browser.windows.getCurrent();
    browser.windows.update(id, {
        height: height + 1
    });
}

1 个答案:

答案 0 :(得分:0)

很遗憾,您无法从弹出窗口标题中删除扩展程序网址。根据此Mozilla bug report discussion,这是故意的,以防止恶意扩展的欺骗/网络钓鱼尝试(例如,通过欺骗用户扩展弹出窗口是浏览器UI的一部分)。但至少他们可能会改变它以显示"扩展名[扩展名]"在窗口标题而不是丑陋的扩展URL。