-
Notifications
You must be signed in to change notification settings - Fork 651
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewriting the chrome extension with manifest v3
Currently: * The background page and popup page seem to be working fine * Cleaned up a lot of code and rewrote them to use more morden JS features like async/await/modules * Restructured the folder structure to make more sense; and reformatted some files to use a better coding style Still need to: * Fix the options page for setting custom proxy server * Make the header modifieer work with manifest v3 * Change the remaining files to comply with the code style
- Loading branch information
Showing
56 changed files
with
1,236 additions
and
2,449 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
module.exports = { | ||
env: { | ||
es2021: true, | ||
browser: true, | ||
webextensions: true, | ||
node: true, | ||
jquery: true, | ||
}, | ||
extends: [ | ||
'google', | ||
], | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
sourceType: 'module', | ||
}, | ||
rules: { | ||
'require-jsdoc': 'off', | ||
'max-len': ['error', {'code': 100}], | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.