diff --git a/README.md b/README.md index 3c8b55c..79b3868 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,12 @@ 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-smarter/ -# Version: 1.2.0 -Changed how new-tab works in the plugin... +# Version: 1.2.2 +Changed theme to differentiate from Tab Groups plugin. # Images -![1 new list style](images/pic3.jpg) -![2 new search stylelit](images/pic4.jpg) -![3 drag and drop functionality](images/pic5.jpg) -![4 old list style](images/pic1.jpg) -![5 old search style](images/pic2.jpg) +![1 Default list style without interacting with tab. ](images/pic1.png) +![2 Hovoring on tab. ](images/pic2.png) +![3 List of tabs matching search. ](images/pic3.png) +![4 Search failed response. ](images/pic4.png) diff --git a/images/pic1.jpg b/images/pic1.jpg deleted file mode 100644 index 24f687d..0000000 Binary files a/images/pic1.jpg and /dev/null differ diff --git a/images/pic1.png b/images/pic1.png new file mode 100644 index 0000000..276c49e Binary files /dev/null and b/images/pic1.png differ diff --git a/images/pic2.jpg b/images/pic2.jpg deleted file mode 100644 index 716eca2..0000000 Binary files a/images/pic2.jpg and /dev/null differ diff --git a/images/pic2.png b/images/pic2.png new file mode 100644 index 0000000..772d17a Binary files /dev/null and b/images/pic2.png differ diff --git a/images/pic3.jpg b/images/pic3.jpg deleted file mode 100644 index b90ea2a..0000000 Binary files a/images/pic3.jpg and /dev/null differ diff --git a/images/pic3.png b/images/pic3.png new file mode 100644 index 0000000..27377f4 Binary files /dev/null and b/images/pic3.png differ diff --git a/images/pic4.jpg b/images/pic4.jpg deleted file mode 100644 index a69d78e..0000000 Binary files a/images/pic4.jpg and /dev/null differ diff --git a/images/pic4.png b/images/pic4.png new file mode 100644 index 0000000..8356283 Binary files /dev/null and b/images/pic4.png differ diff --git a/images/pic5.jpg b/images/pic5.jpg deleted file mode 100644 index 9506e9a..0000000 Binary files a/images/pic5.jpg and /dev/null differ diff --git a/src/backgrounds/bg1.jpg b/src/backgrounds/bg1.jpg deleted file mode 100644 index 1c5e9fe..0000000 Binary files a/src/backgrounds/bg1.jpg and /dev/null differ diff --git a/src/css/tabsSearch.css b/src/css/tabsSearch.css index 9255704..d717d3a 100644 --- a/src/css/tabsSearch.css +++ b/src/css/tabsSearch.css @@ -8,8 +8,7 @@ html, body { } #masterContainer { - background-image: url("../backgrounds/bg1.jpg"); - background-repeat: repeat; + background: radial-gradient(circle,#000000,#676767); width: 710px; height: auto; } @@ -18,13 +17,13 @@ html, body { position: fixed; top: 0; background: rgba(255,255,255, 1); - margin-left: 1.5em; + margin-left: 1.4em; } #udArrows { position: fixed; bottom: 0; - margin-left: 40%; + margin-left: 36%; } #udArrows button { @@ -44,12 +43,12 @@ html, body { width: 630px; background: rgb(255,255,255); color: rgba(9,107,120, 0.85); - border-color: rgba(9,107,120, 0.85); text-align: center; + border-color: rgba(0,0,0, 0.85); + border-style: solid; } #searchBar { - border-style: solid; padding: 0.5em; font-size: 2em; } @@ -57,12 +56,12 @@ html, body { #errorZone { color: red; border-style: dotted; - margin: 6em 0em 0em 2em; + margin: 6em 0em 2em 2em; padding: 0.5em 0em 0.5em 0em; } #listZone { - background-color: rgba(9,107,120, 0.85); + background-color: rgba(255,255,255, 1); float: left; width: 630px; height: auto; @@ -71,7 +70,7 @@ html, body { .block { display: block; - background-color: rgba(158, 181, 219, 0.53); + background-color: rgba(89, 89, 89, 0.8); color: rgba(255,255,255,1); float: left; width: 125px; @@ -82,8 +81,8 @@ html, body { } .block:hover { cursor: pointer; - background-color: rgba(255, 255, 255, 0.8); - color: rgba(64,64,64, 0.84); + background-color: rgba(152, 152, 152, 0.8); + color: rgba(255, 255, 255, 0.84); } .block-focused { diff --git a/src/icons/tabsGroups_48.png b/src/icons/tabsGroups_48.png deleted file mode 100644 index 80477b9..0000000 Binary files a/src/icons/tabsGroups_48.png and /dev/null differ diff --git a/src/icons/tabsGroups_96.png b/src/icons/tabsGroups_96.png deleted file mode 100644 index 7723eb3..0000000 Binary files a/src/icons/tabsGroups_96.png and /dev/null differ diff --git a/src/manifest.json b/src/manifest.json index 944e4de..7624a1e 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Tab Search", - "version": "1.2.0", + "version": "1.2.2", "description": "Search Tabs and switch to them quickly.", "applications": { @@ -16,14 +16,9 @@ "96": "icons/tabsSearch_96.png" }, - "web_accessible_resources": [ - "icons/*.png", - "backgrounds/*.jpg" - ], + "web_accessible_resources": [ "icons/*.png" ], - "permissions": [ - "tabs" - ], + "permissions": [ "tabs" ], "browser_action": { "default_icon": "icons/tabsSearch_48.png",