Index: gc_lang/fr/webext/background.js ================================================================== --- gc_lang/fr/webext/background.js +++ gc_lang/fr/webext/background.js @@ -314,19 +314,19 @@ function openConjugueurWindow () { if (bChrome) { browser.windows.create({ url: browser.extension.getURL("panel/conjugueur.html"), - type: "panel", + type: "popup", width: 710, height: 980 }); return; } let xConjWindow = browser.windows.create({ url: browser.extension.getURL("panel/conjugueur.html"), - type: "panel", + type: "popup", width: 710, height: 980 }); xConjWindow.then(onCreated, onError); }