-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[refactor] manifest v2 --> manifest v3 (#274)
* [refactor] replace all files with mv3 boilerplate * [refactor] Popup is ready * [refactor] Options is ready * [refactor] Background is ready * [refactor] ContentScripts is ready * [refactor] add .prettierignore * [refactor] fix wrong path of css file * [refactor] remove Devtools and Newtab pages since they are not used in this extension * [refactor] fix "Icons registered" error * [refactor] fix deprecated api 'onchanged' to 'onchange' * [refactor] Buffer is not polyfilled in webpack5, so resolve it * [refactor] modify crx-webpack-plugin to make it compatible with webpack5 hooks API * [refactor] other files are ready [refactor] prettify files (yarn run prettier) * [doc] update README and CONTRIBUTING * [refactor] remove eslint becuase never use it, will add it back when needed * [doc] updated README * bump hypercrx from 1.3.0 to 1.4.0
- Loading branch information
Showing
96 changed files
with
13,154 additions
and
19,743 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,8 +1,11 @@ | ||
{ | ||
"presets": [ | ||
"react-app" | ||
// "@babel/preset-env" | ||
"@babel/preset-react" | ||
// "react-app" | ||
], | ||
"plugins": [ | ||
// "@babel/plugin-proposal-class-properties", | ||
"react-hot-loader/babel" | ||
] | ||
} | ||
} |
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 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 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 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,37 +1,24 @@ | ||
# See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# release | ||
/release | ||
|
||
# jetbrains | ||
/.idea | ||
|
||
# vscode | ||
/.vscode | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# yarn lock file | ||
yarn.lock | ||
|
||
# secrets | ||
secrets.*.js | ||
|
||
# logs | ||
yarn-error.log | ||
|
||
/utils/web-ext-profile/ | ||
# See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
/release | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
.history | ||
.vscode | ||
package-lock.json | ||
|
||
# secrets | ||
secrets.*.js |
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,2 @@ | ||
node_modules | ||
build |
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 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 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
Oops, something went wrong.