From 3f95461b546b959192231d91b19269c12dcbec30 Mon Sep 17 00:00:00 2001 From: Jonathan Kingston Date: Mon, 9 Oct 2017 23:35:36 +0100 Subject: [PATCH] Add context for 'tab' and bump version to 1.0.2 Fixes: #3 --- background.js | 2 +- manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/background.js b/background.js index 4c06151..bb37235 100644 --- a/background.js +++ b/background.js @@ -25,7 +25,7 @@ class windowManager { browser.contextMenus.create({ id, title: "Merge all windows", - contexts: ["all"] + contexts: ["all", "tab"] }); } } diff --git a/manifest.json b/manifest.json index 935a372..2c49115 100644 --- a/manifest.json +++ b/manifest.json @@ -7,7 +7,7 @@ "homepage_url": "https://github.com/jonathanKingston/merge-windows", "manifest_version": 2, "name": "Merge Windows", - "version": "1.0.1", + "version": "1.0.2", "icons": { "96": "merge.svg" },