- A Chrome extension tool built with Vite, TypeScript, and TailwindCSS utilizing Manifest v3.
- Demonstrates how to execute requests to the server-side (keyauth.win), focusing primarily on this functionality.
- Ensure that your
Node.js
version is 14 or higher. - Modify or configure the name of your extension in
src/manifest
. - Execute
npm install
to install the necessary dependencies.
- run the command
$ cd KeyAuth-Chrome-Extension-React
- Change Application Credentials in
package.json
>KeyAuth
"KeyAuth": {
"AppName": "",
"OwnerId": "",
"Version": "1.0"
},
- run the command
$ npm run dev
- open
chrome://extensions/
in your Chrome browser - click 'Load unpacked', and select
KeyAuth-Chrome-Extension-React/build
folder - click 'Update' button when you modify the code
- Done!
- set your Chrome browser 'Developer mode' up
- click 'Load unpacked', and select
KeyAuth-Chrome-Extension-React/build
folder
- access
http://0.0.0.0:3000/
- when debugging popup page, open
http://0.0.0.0:3000//popup.html
After the development of your extension run the command
$ npm run build
Now, the content of build
folder will be the extension ready to be submitted to the Chrome Web Store. Just take a look at the official guide to more infos about publishing.