Skip to content

sjkchang/EmailLabeler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Project Background

Overview

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.

Technology Stack

  • 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.

Features

  • 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. Main Extension Popup Screenshot
    • Create New Rule Modal: Provides a simple and intuitive interface for creating new rules without complex configurations. Main Extension Popup Screenshot
    • Labeled Inbox View: Shows the result of automatic labeling directly in the Gmail interface, enhancing the email management experience. Main Extension Popup Screenshot

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.

Project Setup Guide

This guide provides detailed instructions on how to set up the React-based Chrome extension built using Vite and the NestJS backend server.

Prerequisites

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.

Chrome Extension Setup (/chrome-extension Directory)

Initial Preparation of the Chrome Extension

This initial setup is to obtain a chrome extension id which is required to generate a client id and key for google oauth services.

  1. Navigate to the /chrome-extension directory:
    cd chrome-extension
  2. Install the necessary npm packages:
    npm install
  3. Open the /public/manifest.json file and temporarily remove or comment out the oauth2 and key properties. Your manifest.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"
        }
    }
  4. Build the extension:
    npm run build

Loading the Extension in Developer Mode

  1. Open Google Chrome.
  2. Navigate to chrome://extensions/.
  3. Enable "Developer mode" by toggling the switch at the top right corner.
  4. Click on "Load unpacked" and select the /chrome-extension/build directory.
  5. IMPORTANT: Note the ID that Chrome assigns to your extension. This extension ID is required for setting up OAuth credentials.

Setting up Gmail API and OAuth Client ID

  1. Go to the Google Cloud Console.
  2. Create a new project or select an existing one.
  3. Navigate to "APIs & Services > Dashboard" and enable the Gmail API for your project.
  4. Go to "APIs & Services > Credentials", click on "Create Credentials", and select "OAuth client ID".
  5. Set the application type to "Chrome App" and enter the extension ID you noted earlier.
  6. Note the client ID and any provided key.

Updating the Manifest File

  1. Return to your manifest.json file and re-add the oauth2 block and the key. 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"
    }
  2. Save the changes and rebuild the extension:
    npm run build
  3. 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.

Configuring Test Users

  1. Back in the Google Cloud Console API's & Services section, navigate to the "OAuth consent screen" tab.
  2. Under the "Test users" section, click on "Add Users".
  3. Enter the email addresses of the Google accounts that will be used to test the Chrome extension.
  4. These users will be able to log in and use the extension with OAuth functionalities.

Backend Server Setup (/server Directory)

MongoDB Setup

Option 1: Install MongoDB Locally

  • 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.

Option 2: Use MongoDB Atlas

  • Set Up MongoDB Atlas: Register and set up a cluster in MongoDB Atlas by following their guide on the MongoDB Atlas website.

Obtain Connection URI

Environment Configuration

  1. Navigate to the /server directory:
    cd server
  2. Create a .env file to store your environment variables:
    MONGO_URI=<mongo_db_connection_uri>
    GMAIL_API_KEY=<google_oauth_client_id>
    LLM_API_KEY=<open_ai_api_key>
    
    Replace <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.

Installing Dependencies

  1. Install the required npm packages:
    npm install

Running the Server

  1. Start the server:
    npm run start

The application should now be fully operational. Click on the browser extension to add filtering rules.

Additional Information

Testing

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.

Test Suites

  • 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.

Test Results

Below is a screenshot of the test results showing all tests passing, which demonstrates the operational integrity of the backend components:

Test Results

This testing ensures that the Gmail Labeler operates as expected under various scenarios and maintains high standards of quality and reliability.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published