Merge 7499c4a4c1
into be8512e2f7
This commit is contained in:
commit
597280b4f2
3 changed files with 6 additions and 6 deletions
8
index.js
8
index.js
|
@ -1553,8 +1553,8 @@ ContainerWindow.prototype = {
|
||||||
exports.main = function (options) {
|
exports.main = function (options) {
|
||||||
const installation = options.loadReason === "install" ||
|
const installation = options.loadReason === "install" ||
|
||||||
options.loadReason === "downgrade" ||
|
options.loadReason === "downgrade" ||
|
||||||
options.loadReason === "enable" ||
|
options.loadReason === "enable";
|
||||||
options.loadReason === "upgrade";
|
// TODO check if we need this also options.loadReason === "upgrade";
|
||||||
|
|
||||||
// Let's start :)
|
// Let's start :)
|
||||||
ContainerService.init(installation);
|
ContainerService.init(installation);
|
||||||
|
@ -1563,8 +1563,8 @@ exports.main = function (options) {
|
||||||
exports.onUnload = function (reason) {
|
exports.onUnload = function (reason) {
|
||||||
if (reason === "disable" ||
|
if (reason === "disable" ||
|
||||||
reason === "downgrade" ||
|
reason === "downgrade" ||
|
||||||
reason === "uninstall" ||
|
reason === "uninstall") {
|
||||||
reason === "upgrade") {
|
// TODO check if we need this reason === "upgrade") {
|
||||||
ContainerService.uninstall();
|
ContainerService.uninstall();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "testpilot-containers",
|
"name": "testpilot-containers",
|
||||||
"title": "Containers Experiment",
|
"title": "Containers Experiment",
|
||||||
"description": "Containers works by isolating cookie jars using separate origin-attributes defined visually by colored ‘Container Tabs’. This add-on is a modified version of the containers feature for Firefox Test Pilot.",
|
"description": "Containers works by isolating cookie jars using separate origin-attributes defined visually by colored ‘Container Tabs’. This add-on is a modified version of the containers feature for Firefox Test Pilot.",
|
||||||
"version": "1.1.1",
|
"version": "1.1.3",
|
||||||
"author": "Andrea Marchesini, Luke Crouch and Jonathan Kingston",
|
"author": "Andrea Marchesini, Luke Crouch and Jonathan Kingston",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/mozilla/testpilot-containers/issues"
|
"url": "https://github.com/mozilla/testpilot-containers/issues"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "Containers Experiment",
|
"name": "Containers Experiment",
|
||||||
"version": "1.1.1",
|
"version": "1.1.3",
|
||||||
|
|
||||||
"description": "Containers works by isolating cookie jars using separate origin-attributes defined visually by colored ‘Container Tabs’. This add-on is a modified version of the containers feature for Firefox Test Pilot.",
|
"description": "Containers works by isolating cookie jars using separate origin-attributes defined visually by colored ‘Container Tabs’. This add-on is a modified version of the containers feature for Firefox Test Pilot.",
|
||||||
"icons": {
|
"icons": {
|
||||||
|
|
Loading…
Add table
Reference in a new issue