Skip to content

idKnowhere/gpt-anywhere

 
 

Repository files navigation

Overview

GPT Anywhere is a browser extension (Chrome for now), that allows the user to input GPT completions anywhere on a website.

Typical use cases are:

  • Social media
  • Email
  • User support
  • Etc

Folder structure

.
├── 01-shared                    # Shared types and config files
├── 02-options                   # Chrome extension's global files (manifest.json, icons, etc.)
├── 03-options                   # Options script
├── 04-background                # Background script
├── 05-content                   # Content script
└── ...

For reference on options, background and content, see Chrome Extension documentation.

Build

To build the Chrome extension:

  1. Run npm run build
  2. Load the extension from ./dist folder

Architecture

The extension saves the user's api key and prompts in the browser synced storage.

flowchart BT
  Storage([Local storage]) --- Background[Background script]
  OpenAI([OpenAI]) --- Background
  Background ----|API calls| Options[Options page]
  Background ----|API calls| Page1(Page 1)
  Background ----|API calls| Page2(Page 2)
  Background ----|API calls| Page3(Page ...)
  Background ----|API calls| PageN(Page N)
Loading

The background script exposes an API called by the Options page and every browsed page. Scripts are communicating through this API with runtime.sendMessage() and runtime.connect().

License

Unlicense

About

A Chrome extension that lets you insert text from GPT in any text box on any webpage

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • TypeScript 82.9%
  • Vue 13.1%
  • SCSS 2.4%
  • HTML 1.6%