Table of Contents
10 day hackathon project. I decided to create a chrome extension that will read webpage text, find email addresses, and use ZeroBounce API to determine its validity. Hopefully this will help people quickly determine what is a real email.
npm i
- @types/chrome
- @zerobounce/zero-bounce-sdk
- Get an API Key at ZeroBounce API -- only 5 free credits
- Clone the repo
git clone https://github.com/your_username_/Project-Name.git
- Install NPM packages
npm install
- Enter your API in
public/config.js
const REACT_APP_API_KEY = "YOUR API KEY";
- Enter
npm run build
in the terminal - Upload the created dist folder in [chrome://extensions/]
- Make sure Developer Mode is on
- Click Load Unpacked
- Select the
dist
folder from your repo
- Make this nicer looking
- Add Error Alerts
- Get it on the extension store
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request