1
0
mirror of https://github.com/XFox111/TabsAsideExtension.git synced 2026-04-22 07:58:01 +03:00

Patch 1.3.1

Fixed version number
Fixed browser closing
Hid elements of unimplemented features
Added code for issue #10 (help wanted)
This commit is contained in:
Michael Gordeev
2020-06-20 20:38:30 +03:00
parent 386b4f57d9
commit 2b83f3bd60
5 changed files with 85 additions and 11 deletions
+5 -1
View File
@@ -31,11 +31,15 @@
<button title="Options">&#xE10C;</button>
<nav>
<!-- <p>
<input type="checkbox" id="discardOnRestore" oncha/>
<label for="discardOnRestore">Load tabs on restore</label>
</p> -->
<div>
<button value="https://github.com/xfox111/ChromiumTabsAside">Visit GitHub page</button>
<button value="https://chrome.google.com/webstore/detail/tabs-aside/mgmjbodjgijnebfgohlnjkegdpbdjgin">Leave feedback</button>
<button value="https://buymeacoffee.com/xfox111">Buy me a coffee!</button>
<button hidden>Backup saved tabs</button>
<!-- <button hidden>Backup saved tabs</button> -->
</div>
<p>
<small>v1.0</small><br />
+4
View File
@@ -6,6 +6,10 @@
<button title="Options">&#xE10C;</button>
<nav>
<!-- <p>
<input type="checkbox" id="discardOnRestore"/>
<label for="discardOnRestore">Load tabs on restore</label>
</p> -->
<div>
<button value="https://github.com/xfox111/ChromiumTabsAside">Visit GitHub page</button>
<button value="https://chrome.google.com/webstore/detail/tabs-aside/mgmjbodjgijnebfgohlnjkegdpbdjgin">Leave feedback</button>
+45 -3
View File
@@ -37,6 +37,26 @@ else
document.querySelector(".tabsAside .saveTabs").onclick = SetTabsAside;
document.querySelector("nav > p > small").textContent = chrome.runtime.getManifest()["version"];
/* var loadOnRestoreCheckbox = document.querySelector("nav > p > input[type=checkbox]");
chrome.runtime.sendMessage(
{
command: "getDiscardOption"
},
function(loadOnRestore)
{
loadOnRestoreCheckbox.checked = loadOnRestore;
}
);
loadOnRestoreCheckbox.addEventListener("click", function ()
{
chrome.runtime.sendMessage(
{
command: "toggleDiscard"
}
);
}); */
document.querySelectorAll(".tabsAside.pane > header nav button").forEach(i =>
{
@@ -98,6 +118,27 @@ function InitializeStandalone()
document.querySelector(".tabsAside .saveTabs").onclick = SetTabsAside;
document.querySelector("nav > p > small").textContent = chrome.runtime.getManifest()["version"];
/* var loadOnRestoreCheckbox = document.querySelector("nav > p > input[type=checkbox]");
chrome.runtime.sendMessage(
{
command: "getDiscardOption"
},
function(loadOnRestore)
{
loadOnRestoreCheckbox.checked = loadOnRestore;
}
);
loadOnRestoreCheckbox.addEventListener("click", function ()
{
chrome.runtime.sendMessage(
{
command: "toggleDiscard"
}
);
}); */
document.querySelectorAll(".tabsAside.pane > header nav button").forEach(i =>
{
i.onclick = function () { window.open(i.value, '_blank'); };
@@ -142,8 +183,8 @@ function AddCollection(collection)
"<button title='More...'>&#xE10C;</button>" +
"<nav>" +
"<button>Restore without removing</button>" +
"<button hidden>Add tabs to favorites</button>" +
"<button hidden>Share tabs</button>" +
// "<button hidden>Add tabs to favorites</button>" +
// "<button hidden>Share tabs</button>" +
"</nav>" +
"</div>" +
"<button title='Remove collection'>&#xE106;</button>" +
@@ -164,7 +205,8 @@ function AddCollection(collection)
list.querySelectorAll("div > div:last-child > div > span").forEach(i =>
{
i.onclick = function () {
i.onclick = function ()
{
chrome.runtime.sendMessage(
{
command: "openTab",
+30 -6
View File
@@ -1,8 +1,8 @@
chrome.browserAction.onClicked.addListener(function (tab)
{
if (tab.url.startsWith("http")
&& !tab.url.includes("chrome.google.com")
&& !tab.url.includes("microsoftedge.microsoft.com"))
&& !tab.url.includes("chrome.google.com")
&& !tab.url.includes("microsoftedge.microsoft.com"))
{
chrome.tabs.insertCSS(
{
@@ -146,6 +146,15 @@ chrome.runtime.onMessage.addListener(function (message, sender, sendResponse)
case "share":
ShareTabs(message.collectionIndex);
break;
case "toggleDiscard":
if (localStorage.getItem("loadOnRestore") == "true")
localStorage.setItem("loadOnRestore", false);
else
localStorage.setItem("loadOnRestore", true);
break;
case "getDiscardOption":
sendResponse(localStorage.getItem("loadOnRestore") == "false" ? false : true);
break;
}
});
@@ -202,8 +211,10 @@ function SaveCollection()
collections = JSON.parse(localStorage.getItem("sets"));
chrome.tabs.remove(rawTabs.filter(i => !i.url.startsWith("chrome-extension") && !i.url.endsWith("TabsAside.html") && !i.pinned).map(tab => tab.id));
chrome.tabs.create({});
var newTabId;
chrome.tabs.create({}, function(tab) { newTabId = tab.id; });
chrome.tabs.remove(rawTabs.filter(i => !i.url.startsWith("chrome-extension") && !i.url.endsWith("TabsAside.html") && !i.pinned && i.id != newTabId).map(tab => tab.id));
});
UpdateTheme();
@@ -225,7 +236,20 @@ function RestoreCollection(collectionIndex, removeCollection)
{
url: i,
active: false
});
}/* , function (tab)
{
if (localStorage.getItem("loadOnRestore") == "false" ? true : false)
{
setTimeout(function()
{
chrome.tabs.get(tab.id, function(tab1)
{
console.log(tab.url);
chrome.tabs.discard(tab1.id);
});
}, 1000);
}
} */);
});
if (!removeCollection)
@@ -304,7 +328,7 @@ function AppendThumbnail(tabId, cahngeInfo, tab)
},
function (dataUrl)
{
if(!dataUrl)
if (!dataUrl)
{
console.log("Failed to retrieve thumbnail");
return;
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "Tabs Aside",
"version": "1.3",
"version": "1.3.1",
"manifest_version": 2,
"description": "Classic Microsoft Edge \"Tabs Aside\" feature for Chromium browsers",
"author": "Michael \"XFox\" Gordeev",