The "Gmail Labeler" Chrome extension is designed to enhance email management within Gmail by automatically labeling emails based on user-defined rules. This project integrates Gmail through its API and utilizes OpenAI's GPT-4 to analyze email content and categorize it intelligently, making it easier for users to organize and prioritize their email interactions.
- Frontend: The Chrome extension is developed using React, allowing for a dynamic and responsive user interface. Vite is used as the build tool for faster development and optimized production builds.
- Backend: NestJS serves as the backend framework, providing a scalable and modular architecture for handling requests, integrating with databases, and communicating with external APIs like Gmail and OpenAI.
- Database: MongoDB is employed to store user data and rule configurations securely. It offers flexibility and ease of integration with our NestJS server.
- APIs:
- Gmail API: Integrates with Gmail to fetch, modify, and label emails directly through the extension.
- OpenAI API: Utilizes advanced NLP models to analyze and categorize email content accurately.
- Rule-Based Labeling: Users can create custom rules that define how emails should be labeled based on the content, sender, and other criteria.
- Automatic Categorization: Leverages GPT-4 to intelligently analyze and categorize emails, reducing the manual effort required to manage email flows.
- User Interface:
- Main Extension Popup: Allows users to view and manage their labeling rules directly from the Chrome toolbar.
- Create New Rule Modal: Provides a simple and intuitive interface for creating new rules without complex configurations.
- Labeled Inbox View: Shows the result of automatic labeling directly in the Gmail interface, enhancing the email management experience.
- Main Extension Popup: Allows users to view and manage their labeling rules directly from the Chrome toolbar.
This project not only optimizes email management but also showcases the practical application of AI in everyday tools, making advanced technology accessible and useful for enhancing productivity.
This guide provides detailed instructions on how to set up the React-based Chrome extension built using Vite and the NestJS backend server.
Before you start, ensure you have the following installed:
- Node.js and npm (Node Package Manager): Download and install them from the Node.js official website.
- Google Chrome: Needed for adding and testing the Chrome extension.
- MongoDB: Required for the backend server database. You can choose to install MongoDB locally or use MongoDB Atlas for a managed database solution.
- Open AI API key: You will need an OpenAI account and API key. You will need to add funds to your account.
This initial setup is to obtain a chrome extension id which is required to generate a client id and key for google oauth services.
- Navigate to the
/chrome-extension
directory:cd chrome-extension
- Install the necessary npm packages:
npm install
- Open the
/public/manifest.json
file and temporarily remove or comment out theoauth2
andkey
properties. Yourmanifest.json
should look something like this:{ "manifest_version": 3, "name": "Gmail Labeler", "description": "Automatically label Gmail emails.", "version": "1.0", "permissions": [ "identity", "storage", "activeTab", "scripting", "alarms" ], "host_permissions": ["https://mail.google.com/*"], "background": { "service_worker": "service-worker.js" }, "action": { "default_popup": "index.html", "default_icon": "label.png" } }
- Build the extension:
npm run build
- Open Google Chrome.
- Navigate to
chrome://extensions/
. - Enable "Developer mode" by toggling the switch at the top right corner.
- Click on "Load unpacked" and select the
/chrome-extension/build
directory. - IMPORTANT: Note the ID that Chrome assigns to your extension. This extension ID is required for setting up OAuth credentials.
- Go to the Google Cloud Console.
- Create a new project or select an existing one.
- Navigate to "APIs & Services > Dashboard" and enable the Gmail API for your project.
- Go to "APIs & Services > Credentials", click on "Create Credentials", and select "OAuth client ID".
- Set the application type to "Chrome App" and enter the extension ID you noted earlier.
- Note the client ID and any provided key.
- Return to your
manifest.json
file and re-add theoauth2
block and thekey
. Update it to include your new client ID and key:{ "manifest_version": 3, "name": "Gmail Labeler", "description": "Automatically label Gmail emails.", "version": "1.0", "permissions": [ "identity", "storage", "activeTab", "scripting", "alarms" ], "host_permissions": ["https://mail.google.com/*"], "background": { "service_worker": "service-worker.js" }, "oauth2": { "client_id": "YOUR_NEW_CLIENT_ID", "scopes": [ "https://www.googleapis.com/auth/gmail.modify", "https://www.googleapis.com/auth/userinfo.profile", "https://www.googleapis.com/auth/userinfo.email" ] }, "action": { "default_popup": "index.html", "default_icon": "label.png" }, "key": "YOUR_NEW_KEY" }
- Save the changes and rebuild the extension:
npm run build
- Reload the unpacked extension in
chrome://extensions/
to apply changes.
The final version of the extension should now be built and loaded into your Google Chrome browser. It is not ready to use as you must first add test users for it in Google Cloud, and spin up the backend/server.
- Back in the Google Cloud Console API's & Services section, navigate to the "OAuth consent screen" tab.
- Under the "Test users" section, click on "Add Users".
- Enter the email addresses of the Google accounts that will be used to test the Chrome extension.
- These users will be able to log in and use the extension with OAuth functionalities.
- Download and Install: Visit the MongoDB official website and download the version suitable for your operating system. Follow their installation guide.
- Configure MongoDB: Set up your MongoDB environment by creating a database and a user. Details can be found in the MongoDB security documentation.
- Set Up MongoDB Atlas: Register and set up a cluster in MongoDB Atlas by following their guide on the MongoDB Atlas website.
- Connection URI: For detailed instructions on obtaining the MongoDB connection URI, refer to the MongoDB URI documentation.
- Navigate to the
/server
directory:cd server
- Create a
.env
file to store your environment variables:ReplaceMONGO_URI=<mongo_db_connection_uri> GMAIL_API_KEY=<google_oauth_client_id> LLM_API_KEY=<open_ai_api_key>
<mongo_db_connection_uri>
,<google_oauth_client_id>
, and<open_ai_api_key>
with your MongoDB URI, Google Cloud OAuth client ID, and OpenAI API key, respectively.
- Install the required npm packages:
npm install
- Start the server:
npm run start
The application should now be fully operational. Click on the browser extension to add filtering rules.
- NestJS Documentation: For more details on working with NestJS, visit the official NestJS documentation.
- React and Vite Documentation: Learn more about React and Vite by visiting their official documentation pages at React documentation and Vite documentation.
- Chrome Extensions Development: For more guidance on developing Chrome extensions, refer to the Chrome Developers documentation.
The server-side components of the Gmail Labeler are covered with a suite of tests to ensure the reliability and correctness of features such as email classification, CRUD operations for rules, and actual labeling via the Gmail API.
- Email Classification: Tests that the system accurately classifies emails based on content and user-defined rules using GPT-4.
- Rule CRUD: Ensures that create, read, update, and delete operations for rules work seamlessly and persist changes correctly in MongoDB.
- Email fetching and Labeling via Gmail API: Verifies that the integration with the Gmail API correctly applies labels to emails as specified by the rules.
Below is a screenshot of the test results showing all tests passing, which demonstrates the operational integrity of the backend components:
This testing ensures that the Gmail Labeler operates as expected under various scenarios and maintains high standards of quality and reliability.