diff --git a/README.md b/README.md index 5ee6a84..84305d2 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ Search Firefox tabs and get a list or automatic direct to the searched tab. # Download https://addons.mozilla.org/en-US/firefox/addon/tab-search-and-manage/ -# Version: 1.3.8 -* Added tab mute option -* Added to new window option +# Version: 1.3.9 +* Added tab duplicate button +* Added secondary control menu ***Note: diff --git a/images/pic1.png b/images/pic1.png index 3c962fa..1d31bd1 100644 Binary files a/images/pic1.png and b/images/pic1.png differ diff --git a/images/pic2.png b/images/pic2.png index 08db173..b5abccf 100644 Binary files a/images/pic2.png and b/images/pic2.png differ diff --git a/images/pic3.png b/images/pic3.png index 6d2d9ee..1a3c71d 100644 Binary files a/images/pic3.png and b/images/pic3.png differ diff --git a/images/pic4.png b/images/pic4.png index 5e6a3b2..1cfdcb5 100644 Binary files a/images/pic4.png and b/images/pic4.png differ diff --git a/images/pic5.png b/images/pic5.png index 151f1e5..16862ee 100644 Binary files a/images/pic5.png and b/images/pic5.png differ diff --git a/images/pic6.png b/images/pic6.png index 2252744..da22bfe 100644 Binary files a/images/pic6.png and b/images/pic6.png differ diff --git a/src/css/tabsSearch.css b/src/css/tabsSearch.css index 7e115ba..aefe5bb 100644 --- a/src/css/tabsSearch.css +++ b/src/css/tabsSearch.css @@ -22,15 +22,22 @@ html, body { overflow-x: hidden; } margin-left: 1.4em; } -#tabControls { +#tabControls, +#tabControls2 { position: fixed; z-index: 555; - height: 152px; + width: 145px; + height: 32px; padding: 0em 0.4em 0.4em 0.4em; background-color: rgba(9,107,120, 0.85); color: rgb(255,255,255); } +#tabControls2 { + height: 152px; + width: auto; +} + #bottomControls { position: fixed; bottom: 0; @@ -120,14 +127,24 @@ html, body { overflow-x: hidden; } scrollbar-width: thin; } -.closeImg, .hiderImg, .popoutImg, .muterImg { +/* Control defaults */ +.closeImg, .hiderImg, .muterImg, .dupeImg, .popoutImg { padding: 0.2em; width: 28px; height: 28px; - clear: both; float: left; } +/* Control 2 imgs set to vertical */ +.closeImg { + clear: both; +} + +.hiderImg, .muterImg, .dupeImg, .popoutImg { + float: right; +} + + .pTagTitleText { background-color: rgba(63, 63, 63, 0.64); line-height: 1.5em; @@ -137,8 +154,11 @@ html, body { overflow-x: hidden; } text-overflow: ellipsis; } -.closeImg { float: right; } +.hiderImg:hover, .popoutImg:hover, +.muterImg:hover, .dupeImg:hover { + background-color: rgba(30, 129, 22, 1); +} + .block-focused { background-color: rgba(53, 103, 14, 0.8); } .closeImg:hover { background-color: rgba(196, 11, 11, 1); } -.hiderImg:hover, .popoutImg:hover, .muterImg:hover { background-color: rgba(30, 129, 22, 1); } .hiddenBGColor { background-color: rgba(152, 152, 152, 0.8); } diff --git a/src/icons/dupeTab.png b/src/icons/dupeTab.png new file mode 100644 index 0000000..b6d6d77 Binary files /dev/null and b/src/icons/dupeTab.png differ diff --git a/src/manifest.json b/src/manifest.json index ab471ce..d8398e9 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Tab Search and Manage", - "version": "1.3.8", + "version": "1.3.9", "description": "This plugin can search, drag-n-drop ordering, and (un)hide all or some tabs.", "applications": { @@ -19,6 +19,7 @@ "permissions": [ "tabs", "tabHide", + "activeTab", "storage" ], diff --git a/src/pages/tabsSearch.html b/src/pages/tabsSearch.html index 80d55fc..8ad900e 100755 --- a/src/pages/tabsSearch.html +++ b/src/pages/tabsSearch.html @@ -26,12 +26,17 @@ + + +