This commit is contained in:
parent
7a90bbb67c
commit
218c39d4f9
1 changed files with 3 additions and 3 deletions
|
@ -792,7 +792,7 @@ window.assignManager = {
|
||||||
}
|
}
|
||||||
browser.contextMenus.create({
|
browser.contextMenus.create({
|
||||||
id: menuId,
|
id: menuId,
|
||||||
title: "Always Open in This Container",
|
title: browser.i18n.getMessage("alwaysOpenSiteInContainer"),
|
||||||
checked,
|
checked,
|
||||||
type: "checkbox",
|
type: "checkbox",
|
||||||
contexts: ["all"],
|
contexts: ["all"],
|
||||||
|
@ -806,13 +806,13 @@ window.assignManager = {
|
||||||
|
|
||||||
browser.contextMenus.create({
|
browser.contextMenus.create({
|
||||||
id: this.MENU_HIDE_ID,
|
id: this.MENU_HIDE_ID,
|
||||||
title: "Hide This Container",
|
title: browser.i18n.getMessage("hideThisContainer"),
|
||||||
contexts: ["all"],
|
contexts: ["all"],
|
||||||
});
|
});
|
||||||
|
|
||||||
browser.contextMenus.create({
|
browser.contextMenus.create({
|
||||||
id: this.MENU_MOVE_ID,
|
id: this.MENU_MOVE_ID,
|
||||||
title: "Move Tabs to a New Window",
|
title: browser.i18n.getMessage("moveTabsToANewWindow"),
|
||||||
contexts: ["all"],
|
contexts: ["all"],
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue