Ama(Summa)rize is a Chrome extension that summarizes Amazon reviews using Perplexity API.
- Configure Perplexity API Key
- Summarize Amazon Reviews
demo.mp4
cd amarize-extension
Inside the newly created project, you can run some built-in commands:
Runs the app in development mode.
Then follow these instructions to see your app:
- Open chrome://extensions
- Check the Developer mode checkbox
- Click on the Load unpacked extension button
- Select the folder amarize-extension/build
Builds the app for production to the build folder.
Run npm run pack
to
zip the build folder and your app is ready to be published on Chrome Web Store.
Or you can zip it manually.
Packs the build folder into a zip file under release folder.
Rebuilds and packs the app into a zip file.
It is a shorthand for npm run build && npm run pack
.
Formats all the HTML, CSS, JavaScript, TypeScript and JSON files.
It will create a directory called my-extension
inside the current folder.
Inside that directory, it will generate the initial project structure and install the transitive dependencies:
amarize-extension
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── config // Webpack with minimal configurations
│ ├── paths.js
│ ├── webpack.common.js
│ └── webpack.config.js
├── public
│ ├── icons
│ │ ├── icon_16.png
│ │ ├── icon_32.png
│ │ ├── icon_48.png
│ │ ├── icon_128.png
│ ├── *.html // HTML files will vary depending on extension type
│ └── manifest.json
└── src
├── *.css // CSS files will vary depending on extension type
└── *.js // JS files will vary depending on extension type
Suggestions and pull requests are welcomed!.
This project was bootstrapped with Chrome Extension CLI