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

Patch 1.2.2 (#7)

"Save tabs" now doesn't affect pinned tabs (#6)
This commit is contained in:
Michael Gordeev
2020-04-25 11:25:43 +03:00
committed by GitHub
parent 6a20af4e2f
commit 3a05ecb722
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -171,7 +171,7 @@ function SaveCollection()
{
chrome.tabs.query({ currentWindow: true }, function (tabs)
{
tabs = tabs.filter(i => !i.url.startsWith("chrome-extension") && !i.url.endsWith("TabsAside.html"));
tabs = tabs.filter(i => !i.url.startsWith("chrome-extension") && !i.url.endsWith("TabsAside.html") && !i.pinned);
var collection =
{
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "Tabs Aside",
"version": "1.2.1",
"version": "1.2.2",
"manifest_version": 2,
"description": "Classic Microsoft Edge \"Tabs Aside\" feature for Chromium browsers",
"author": "Michael \"XFox\" Gordeev",