Modifies the levels.js data structures to accomodate for Firefox-specific configuration.
More...
Modifies the levels.js data structures to accomodate for Firefox-specific configuration.
- Author
- Copyright (C) 2022 Libor Polcak
- License:
- SPDX-License-Identifier: GPL-3.0-or-later
◆ modify_wrapping_groups
var modify_wrapping_groups |
Initial value:= function() {
if (group.name === "windowname") {
group.description2.push(browser.i18n.getMessage("jssgroupPersistentIdentifierOfTheBrowserTabFirefox88"))
}
else if (group.name === "wasm") {
group.params = [
{
short: browser.i18n.getMessage("jssgroupWASMDisabled"),
description: browser.i18n.getMessage("jssgroupWASMDisabledDescription"),
config: [0],
},
{
short: browser.i18n.getMessage("jssgroupWASMEnabled"),
description: browser.i18n.getMessage("jssgroupWASMEnabledDescription"),
config: [1],
},
];
}
});
}
var wrapping_groups
Definition levels.js:32