mirror of
https://github.com/XFox111/TabsAsideExtension.git
synced 2026-07-02 19:52:47 +03:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 15cb0bafef | |||
| 7ec245dac2 | |||
| d2e1b1704d | |||
| fd5829defe |
@@ -1,14 +1,14 @@
|
||||
# Tabs aside for Google Chrome
|
||||
|
||||

|
||||

|
||||
[](https://chrome.google.com/webstore/detail/tabs-aside/mgmjbodjgijnebfgohlnjkegdpbdjgin)
|
||||
[](https://chrome.google.com/webstore/detail/tabs-aside/mgmjbodjgijnebfgohlnjkegdpbdjgin)
|
||||
|
||||
[](https://github.com/xfox111/chromiumtabsaside/releases/latest)
|
||||

|
||||
[](https://github.com/xfox111/chromiumtabsaside/releases/latest)
|
||||
|
||||
[](https://github.com/xfox111/ChromiumTabsAside/issues)
|
||||
[](https://github.com/xfox111/ChromiumTabsAside/commits/master)
|
||||

|
||||
[](https://github.com/xfox111/ChromiumTabsAside)
|
||||
[](https://opensource.org/licenses/MIT)
|
||||
|
||||
[](https://twitter.com/xfox111)
|
||||
@@ -16,17 +16,22 @@
|
||||
|
||||

|
||||
|
||||
If you’re like me, you often find yourself with a bunch of open tabs. You’d like to get those tabs out of the way sometimes, but they’re maybe not worth saving as actual bookmarks.
|
||||
If you’re like me, you often find yourself with a bunch of open tabs. You’d like to get those tabs out of the way sometimes, but they’re maybe not worth saving as actual bookmarks.
|
||||
|
||||
In the Edge browser Microsoft has introduced new feature called "Tabs aside" (or Tab groups) which lets you set tabs aside in a sort of temporary workspace so that you can call them back up later.
|
||||
In the Edge browser, Microsoft has introduced a new feature called "Tabs aside" (or Tab groups) which lets you set tabs aside in a sort of temporary workspace so that you can call them back up later.
|
||||
|
||||
Unfortunately, in new Chromium-based Microsoft Edge the devs decided not to implement this must-have-feature. So I've decided to create an browser extension which replicates this awesome feature in Chromium-based browsers
|
||||
Unfortunately, in new Chromium-based Microsoft Edge, the devs decided not to implement this must-have-feature. So I've decided to create a browser extension which replicates this awesome feature in Chromium-based browsers
|
||||
|
||||
## Features
|
||||
- Familiar UI inherited from legacy Microsoft Edge with some improvements
|
||||
- Auto Dark mode
|
||||
- Now you can restore one tab from collection without removing
|
||||
|
||||
## Download
|
||||
- [Google Chrome Webstore](https://chrome.google.com/webstore/detail/tabs-aside/mgmjbodjgijnebfgohlnjkegdpbdjgin)
|
||||
- [Microsoft Edge Add-ons Webstore]() *Available soon*
|
||||
- [GitHub Releases](https://github.com/xfox111/chromiumtabsaside/releases/latest)
|
||||
|
||||
## To-do list
|
||||
- Add ability to backup and restore saved tabs
|
||||
- Add ability to share collections
|
||||
@@ -37,6 +42,7 @@ Unfortunately, in new Chromium-based Microsoft Edge the devs decided not to impl
|
||||
- Add ability to restore collections without removing them from the pane
|
||||
- Add more languages (probably engage auto translator)
|
||||
- Code cleanup
|
||||
- Fix appearance on some websites
|
||||
|
||||
## Copyrights
|
||||
> ©2020 Michael "XFox" Gordeev
|
||||
|
||||
+3
-3
@@ -7,9 +7,9 @@
|
||||
|
||||
<nav>
|
||||
<div>
|
||||
<button onclick="window.open('https://github.com/xfox111/ChromiumTabsAside', '_blank')">Visit GitHub page</button>
|
||||
<button onclick="window.open('https://chrome.google.com/webstore/category/extensions', '_blank')">Leave feedback</button>
|
||||
<button onclick="window.open('https://buymeacoffee.com/xfox111', '_blank')">Buy me a coffee!</button>
|
||||
<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>-->
|
||||
</div>
|
||||
<p>
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
left: 0 !important;
|
||||
transition: .2s !important;
|
||||
opacity: 0;
|
||||
color: black !important;
|
||||
}
|
||||
|
||||
.tabsAside.pane
|
||||
@@ -122,8 +123,11 @@
|
||||
|
||||
.tabsAside.pane > section > h2
|
||||
{
|
||||
color: inherit !important;
|
||||
margin: 0px 40px !important;
|
||||
font-weight: normal !important;
|
||||
font-size: 1.5em !important;
|
||||
line-height: normal !important;
|
||||
}
|
||||
|
||||
/* Collection header */
|
||||
|
||||
+3
-1
@@ -1,6 +1,8 @@
|
||||
chrome.browserAction.onClicked.addListener(function (tab)
|
||||
{
|
||||
if (tab.url.startsWith("http"))
|
||||
if (tab.url.startsWith("http")
|
||||
&& !tab.url.includes("chrome.google.com")
|
||||
&& !tab.url.includes("microsoftedge.microsoft.com"))
|
||||
{
|
||||
chrome.tabs.insertCSS(
|
||||
{
|
||||
|
||||
+2
-1
@@ -1,9 +1,10 @@
|
||||
{
|
||||
"name": "Tabs Aside",
|
||||
"version": "1.0",
|
||||
"version": "1.1",
|
||||
"manifest_version": 2,
|
||||
"description": "Classic Microsoft Edge \"Tabs Aside\" feature for Chromium browsers",
|
||||
"author": "Michael \"XFox\" Gordeev",
|
||||
"default_locale": "en",
|
||||
"permissions":
|
||||
[
|
||||
"tabs",
|
||||
|
||||
Reference in New Issue
Block a user