1
0
mirror of https://github.com/XFox111/TabsAsideExtension.git synced 2026-07-02 19:52:47 +03:00

Compare commits

..

4 Commits

Author SHA1 Message Date
Adam d6996031b6 Minor 2.0.6 (#90)
* Change default 'set tabs aside' shortcut

This shortcut can cause problems for those who are accustomed to using it to go back in history. In Chrome and Edge, it seems to be overridden. This should replace it with an unused key combo.
2022-08-25 17:06:23 +03:00
xfox111 ef65522e2a Create FUNDING.yml 2022-01-29 14:12:58 +03:00
Eugene dbbf0c7599 Moved to trmcnvn/chrome-addon CD task 2021-09-17 17:06:40 +03:00
xfox111 aa6e88146b Patch 2.0.5 (#88)
Fixed context menu position on scrolling
2021-09-17 15:40:35 +03:00
6 changed files with 23 additions and 5 deletions
+12
View File
@@ -0,0 +1,12 @@
# These are supported funding model platforms
#github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
#patreon: # Replace with a single Patreon username
open_collective: TabsAside
#ko_fi: # Replace with a single Ko-fi username
#tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
#community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
#liberapay: # Replace with a single Liberapay username
#issuehunt: # Replace with a single IssueHunt username
#otechie: # Replace with a single Otechie username
custom: [ "https://buymeacoffee.com/xfox111" ]
+1 -1
View File
@@ -46,7 +46,7 @@ jobs:
exclusions: '.git/* .vscode/* .github/* *.md'
- name: Publish to Chrome Webstore
uses: SebastienGllmt/chrome-addon@v3
uses: trmcnvn/chrome-addon@v2
with:
extension: mgmjbodjgijnebfgohlnjkegdpbdjgin
zip: ./TabsAside.zip
+2 -1
View File
@@ -209,7 +209,8 @@
.collectionSet > .header > div > nav
{
width: 250px;
right: 60px;
right: 0px;
top: 35px;
}
/* Tabs collection */
+5
View File
@@ -73,6 +73,11 @@
}
/* Context menus style */
.tabsAside .contextContainer
{
position: relative;
}
.tabsAside nav
{
user-select: none;
+1 -1
View File
@@ -266,7 +266,7 @@ function AddCollection(collection, thumbnails)
"<div class='header'>" +
"<input type='text' value='" + (collection.name ?? new Date(collection.timestamp).toDateString()) + "'/>" +
"<a loc='restoreTabs' class='restoreCollection'>Restore tabs</a>" +
"<div>" +
"<div class='contextContainer'>" +
"<button loc_alt='more' class='btn more' title='More...'>&#xE712;</button>" +
"<nav>" +
"<button loc='restoreNoRemove' class='restoreCollection noDelete'>Restore without removing</button>" +
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "__MSG_name__",
"version": "2.0.4",
"version": "2.0.6",
"manifest_version": 2,
"description": "__MSG_description__",
"author": "__MSG_author__",
@@ -42,7 +42,7 @@
"description": "__MSG_setAside__",
"suggested_key":
{
"default": "Alt+Left",
"default": "Shift+Alt+Left",
"mac": "MacCtrl+T"
}
},