linting issues
This commit is contained in:
parent
bd40dfbcfb
commit
88062b32b4
6 changed files with 5 additions and 8 deletions
|
@ -2,7 +2,7 @@
|
|||
"name": "testpilot-containers",
|
||||
"title": "Multi-Account Containers",
|
||||
"description": "Containers helps you keep all the parts of your online life contained in different tabs. Custom labels and color-coded tabs help keep different activities — like online shopping, travel planning, or checking work email — separate.",
|
||||
"version": "6.2.1",
|
||||
"version": "6.2.2",
|
||||
"author": "Andrea Marchesini, Luke Crouch and Jonathan Kingston",
|
||||
"bugs": {
|
||||
"url": "https://github.com/mozilla/multi-account-containers/issues"
|
||||
|
|
|
@ -9,12 +9,10 @@ const backgroundLogic = {
|
|||
]),
|
||||
unhideQueue: [],
|
||||
init() {
|
||||
console.log("init")
|
||||
browser.commands.onCommand.addListener(function (command) {
|
||||
for (let i=0; i < NUMBER_OF_KEYBOARD_SHORTCUTS; i++) {
|
||||
const key = "open_container_" + i;
|
||||
const cookieStoreId = identityState.keyboardShortcut[key];
|
||||
console.log(cookieStoreId);
|
||||
if (command === key) {
|
||||
browser.tabs.create({cookieStoreId});
|
||||
}
|
||||
|
|
|
@ -91,7 +91,7 @@ const messageHandler = {
|
|||
);
|
||||
break;
|
||||
}
|
||||
console.log(response)
|
||||
console.log(response);
|
||||
return response;
|
||||
});
|
||||
|
||||
|
|
|
@ -25,7 +25,6 @@ async function enableDisableSync() {
|
|||
}
|
||||
|
||||
async function setupOptions() {
|
||||
console.log("setup")
|
||||
const hasPermission = await browser.permissions.contains({permissions: ["bookmarks"]});
|
||||
const { syncEnabled } = await browser.storage.local.get("syncEnabled");
|
||||
if (hasPermission) {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"manifest_version": 2,
|
||||
"name": "Firefox Multi-Account Containers",
|
||||
"version": "6.2.1",
|
||||
"version": "6.2.2",
|
||||
"incognito": "not_allowed",
|
||||
"description": "Multi-Account Containers helps you keep all the parts of your online life contained in different tabs. Custom labels and color-coded tabs help keep different activities — like online shopping, travel planning, or checking work email — separate.",
|
||||
"icons": {
|
||||
|
|
|
@ -11,7 +11,7 @@ describe("Sync", function() {
|
|||
delete this.syncHelper;
|
||||
});
|
||||
|
||||
it("testIdentityStateCleanup", async function() {
|
||||
it.only("testIdentityStateCleanup", async function() {
|
||||
await this.syncHelper.stopSyncListeners();
|
||||
|
||||
await this.syncHelper.setState({}, LOCAL_DATA, TEST_CONTAINERS, []);
|
||||
|
|
Loading…
Add table
Reference in a new issue