-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
1 parent
a51b5bb
commit 2eed7cd
Showing
141 changed files
with
19,161 additions
and
43,544 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,6 @@ root = true | |
charset = utf-8 | ||
indent_style = tab | ||
indent_size = 4 | ||
|
||
[*.{yml,yaml,md,mdx,json}] | ||
indent_style = space |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.