From e34035bbb7700ffa1e26e7dc3d34674c28f5f4d0 Mon Sep 17 00:00:00 2001 From: Pramjeet Ahlawat Date: Sun, 26 Mar 2017 21:27:06 +0530 Subject: [PATCH] fixed bug in mouse options, changed version in menifest file --- app.html | 2 +- app.js | 2 +- manifest.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app.html b/app.html index 5446b6d..c753d51 100644 --- a/app.html +++ b/app.html @@ -30,7 +30,7 @@
-

Change Tab on hover, click to shift to the tab and close tabs +

Change Tab on hover, single click to shift to the tab and close tabs list.

diff --git a/app.js b/app.js index 1feb481..7d40306 100644 --- a/app.js +++ b/app.js @@ -131,7 +131,7 @@ document.addEventListener('DOMContentLoaded', function () { if (mouseBehavior == "click") { changeActiveTab(tab) } - else if (mouseBehavior == "single-click") { + else { changeActiveTabAndCloseWindow(tab) } } diff --git a/manifest.json b/manifest.json index ebe502f..d13d59d 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "Peek-a-tab, Tabs Manager for Google Chrome™", "description": "Search, preview, jump across, and close tabs quickly in your chrome browser.", - "version": "1.5", + "version": "1.5.3", "icons": { "128": "icon_128.png" },