diff --git a/README.md b/README.md index 2072cd7..5ee6a84 100644 --- a/README.md +++ b/README.md @@ -4,10 +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.7 -* Fixed scroll to top -* Fixed scroll to bottom -* Improved scroll to current tab time. +# Version: 1.3.8 +* Added tab mute option +* Added to new window option ***Note: diff --git a/src/css/tabsSearch.css b/src/css/tabsSearch.css index cf12681..7e115ba 100644 --- a/src/css/tabsSearch.css +++ b/src/css/tabsSearch.css @@ -25,7 +25,7 @@ html, body { overflow-x: hidden; } #tabControls { position: fixed; z-index: 555; - height: 128px; + height: 152px; padding: 0em 0.4em 0.4em 0.4em; background-color: rgba(9,107,120, 0.85); color: rgb(255,255,255); @@ -120,7 +120,7 @@ html, body { overflow-x: hidden; } scrollbar-width: thin; } -.closeImg, .hiderImg { +.closeImg, .hiderImg, .popoutImg, .muterImg { padding: 0.2em; width: 28px; height: 28px; @@ -140,5 +140,5 @@ html, body { overflow-x: hidden; } .closeImg { float: right; } .block-focused { background-color: rgba(53, 103, 14, 0.8); } .closeImg:hover { background-color: rgba(196, 11, 11, 1); } -.hiderImg:hover { background-color: rgba(30, 129, 22, 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/isMuted.png b/src/icons/isMuted.png new file mode 100644 index 0000000..f523741 Binary files /dev/null and b/src/icons/isMuted.png differ diff --git a/src/icons/isNotMuted.png b/src/icons/isNotMuted.png new file mode 100644 index 0000000..902c78f Binary files /dev/null and b/src/icons/isNotMuted.png differ diff --git a/src/icons/popout-arrow.png b/src/icons/popout-arrow.png new file mode 100644 index 0000000..df25e9d Binary files /dev/null and b/src/icons/popout-arrow.png differ diff --git a/src/manifest.json b/src/manifest.json index 15a56ee..ab471ce 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Tab Search and Manage", - "version": "1.3.7", + "version": "1.3.8", "description": "This plugin can search, drag-n-drop ordering, and (un)hide all or some tabs.", "applications": { diff --git a/src/pages/tabsSearch.html b/src/pages/tabsSearch.html index 0eb75e9..80d55fc 100755 --- a/src/pages/tabsSearch.html +++ b/src/pages/tabsSearch.html @@ -26,8 +26,10 @@