Skip to content

Commit 2eed7cd

Browse files
committed
Release v2.0.0
Added support for showing the QuicKey UI in a popup window, which lets you use a single shortcut key to open the list of recent tabs, move the selection, and then activate the selected tab. It's the closest thing to Firefox's ctrltab behavior that can be built in Chrome. Added support for showing each recent tab while navigating through the list without having to deal with any time limit. Added support for searching with multiple terms, separated by spaces. Added support for Chrome manifest V3, which required re-architecting much of the extension. Reorganized the Options page into sub-pages.
1 parent a51b5bb commit 2eed7cd

File tree

141 files changed

+19161
-43544
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+19161
-43544
lines changed

.babelrc

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,20 @@
11
{
2-
"generatorOpts": {
3-
"jsescOption": {
4-
"minimal": true
5-
}
6-
},
72
"presets": [
3+
"@babel/preset-react",
84
[
95
"@babel/preset-env",
106
{
117
"targets": {
12-
"chrome": 55
8+
"chrome": 60
139
},
1410
"loose": true,
1511
"corejs": 3,
1612
"useBuiltIns": "entry",
1713
"modules": false
1814
}
19-
],
20-
[
21-
"minify",
22-
{
23-
"builtIns": false
24-
}
2515
]
16+
],
17+
"plugins": [
18+
"babel-plugin-transform-goober"
2619
]
2720
}

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ root = true
44
charset = utf-8
55
indent_style = tab
66
indent_size = 4
7+
8+
[*.{yml,yaml,md,mdx,json}]
9+
indent_style = space

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
/build/build.txt
22
/build/rjs
33
/build/out
4+
/build/temp
45
/node_modules
56
/release
7+
/dist*
8+
/.idea

0 commit comments

Comments
 (0)