setup proper link and added images

This commit is contained in:
Maxim Stewart 2018-11-11 03:44:32 -06:00
parent ac3716cd4d
commit b1e4119565
12 changed files with 19 additions and 10 deletions

View File

@ -1,9 +1,17 @@
# Session Manager
Session Manager allows you to manage your Firefox session by backing up or loading your saved sessions.
# Easy Session Manager
Easy Session Manager allows you to manage your Firefox session by backing up or loading your saved sessions.
# Download
https://addons.mozilla.org/en-US/firefox/addon/tab-groups-with-search-manager/
https://addons.mozilla.org/en-US/firefox/addon/easy-session-manager/
# Version: 0.0.1
Released Program
# Images
![1 Default interface with no sessions. ](images/pic1.png)
![2 Interface with sessions and hovering color effect. ](images/pic2.png)
![3 Saving a new session. ](images/pic3.png)
![4 A session selected. ](images/pic4.png)
![5 Deleting a selected session. ](images/pic5.png)
![6 Editing a selected session. ](images/pic6.png)
![7 Downloading a selected session. ](images/pic7.png)

BIN
images/pic1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

BIN
images/pic2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
images/pic3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
images/pic4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

BIN
images/pic5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
images/pic6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
images/pic7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -1,8 +1,8 @@
{
"manifest_version": 2,
"name": "Session Manager",
"name": " Easy Session Manager",
"version": "0.0.1",
"description": "Session Manager allows you to manage your Firefox session by backing up or loading your saved sessions.",
"description": " Easy Session Manager allows you to manage your Firefox session by backing up or loading your saved sessions.",
"applications": {
"gecko": {
@ -12,8 +12,9 @@
},
"icons": {
"48": "images/icons/sessionManager.png",
"96": "images/icons/sessionManager.png"
"48": "images/icons/sessionManager48x48.png",
"96": "images/icons/sessionManager96x96.png",
"512": "images/icons/sessionManager.png"
},
"permissions": [
@ -24,7 +25,7 @@
"browser_action": {
"default_icon": "images/icons/sessionManager.png",
"default_title": "Session Manager",
"default_title": " Easy Session Manager",
"default_popup": "pages/sessionManager.html"
}

View File

@ -74,7 +74,7 @@ const editSession = () => {
json = JSON.parse(storageResults[id]);
saveToStorage(newName, JSON.stringify(json));
});
selectedItem.innerHTML = newName;
selectedItem.textContent = newName;
}
}