diff --git a/README.md b/README.md index bbf4e97..3315d69 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ Easy Session Manager allows you to manage your Firefox session by backing up or # Download https://addons.mozilla.org/en-US/firefox/addon/easy-session-manager/ -# Version: 0.2.2.9 -* Added free session memory feature. +# Version: 0.2.3.0 +* Changed menu gutter positioning # Images diff --git a/src/manifest.json b/src/manifest.json index ada8889..dc5f816 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": " Easy Session Manager", - "version": "0.2.2.9", + "version": "0.2.3.0", "description": "Easy Session Manager allows you to manage your Firefox session by backing up or loading your saved sessions.", "applications": { diff --git a/src/scripts/utils.js b/src/scripts/utils.js index d385ad6..f47672a 100644 --- a/src/scripts/utils.js +++ b/src/scripts/utils.js @@ -254,7 +254,7 @@ function sleep(ms) { const importSession = () => { browser.tabs.create({ - url: browser.extension.getURL("../pages/import.html"), + url: browser.runtime.getURL("../pages/import.html"), active: true }); } diff --git a/src/styles/styles.css b/src/styles/styles.css index 6f8b5d3..d305328 100644 --- a/src/styles/styles.css +++ b/src/styles/styles.css @@ -34,9 +34,9 @@ li { #master-gutter { position: absolute; width: 100%; - bottom: 0.5em; - max-height: 6em; - overflow: auto; + bottom: 0.2em; + max-height: 4em; + overflow: hidden; } #savedSessions {