Skip to content

Commit

Permalink
Release v2.0.0
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
fwextensions committed Oct 12, 2024
1 parent a51b5bb commit 2eed7cd
Show file tree
Hide file tree
Showing 141 changed files with 19,161 additions and 43,544 deletions.
17 changes: 5 additions & 12 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,27 +1,20 @@
{
"generatorOpts": {
"jsescOption": {
"minimal": true
}
},
"presets": [
"@babel/preset-react",
[
"@babel/preset-env",
{
"targets": {
"chrome": 55
"chrome": 60
},
"loose": true,
"corejs": 3,
"useBuiltIns": "entry",
"modules": false
}
],
[
"minify",
{
"builtIns": false
}
]
],
"plugins": [
"babel-plugin-transform-goober"
]
}
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ root = true
charset = utf-8
indent_style = tab
indent_size = 4

[*.{yml,yaml,md,mdx,json}]
indent_style = space
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
/build/build.txt
/build/rjs
/build/out
/build/temp
/node_modules
/release
/dist*
/.idea
Loading

0 comments on commit 2eed7cd

Please sign in to comment.