Skip to content
This repository was archived by the owner on Sep 26, 2024. It is now read-only.

This is an Atomix Chrome Extension that wrap arounds ChatGPT, providing additional features while improving the accessibility of the chatbot on Chrome browser as a sidebar.

License

Notifications You must be signed in to change notification settings

atomixdesign/atomix-chatgpt-extension

Repository files navigation

Atomix ChatGPT Chrome Extension (MV3) with React 18, Webpack 5, and MUIv5, Typescript

Features

This is an Atomix Chrome Extension that wrap arounds ChatGPT, providing additional features while improving the accessibility of the chatbot on Chrome browser as a sidebar.

Procedures:

  1. Check if your Node.js version is >= 18.
  2. Clone this repository.
  3. Add fontawesome pro token via .npmrc file
  4. Run yarn install to install the dependencies.
  5. Run yarn build or yarn dev for hot-reload dev mode
  6. Load your extension on Chrome following:
    1. Access chrome://extensions/
    2. Check Developer mode
    3. Click on Load unpacked extension
    4. Select the build folder.

Structure

All the extension's code is placed in the src folder. The chrome extensions after built is in the build folder.

TypeScript

This boilerplate now supports TypeScript! The Options Page is implemented using TypeScript. Please refer to src/pages/Options/ for example usages.

Webpack auto-reload and HRM

To make your workflow much more efficient this boilerplate uses the webpack server to development (started with npm start) with auto reload feature that reloads the browser automatically every time that you save some file in your editor.

You can run the dev mode on other port if you want. Just specify the env var port like this:

$ PORT=6002 yarn run start

Content Scripts

Content script starting points is on your extension manifest, to your bundles that you want to use as content scripts, but you need to exclude these entry points from hot reloading (why?). To do so you need to expose which entry points are content scripts on the webpack.config.js using the chromeExtensionBoilerplate -> notHotReload config. Look the example below.

Let's say that you want use the myContentScript entry point as content script, so on your webpack.config.js you will configure the entry point and exclude it from hot reloading, like this:

{
  
  entry: {
    myContentScript: "./src/js/myContentScript.js"
  },
  chromeExtensionBoilerplate: {
    notHotReload: ["myContentScript"]
  }
  
}

and on your src/manifest.json:

{
  "content_scripts": [
    {
      "matches": ["https://www.google.com/*"],
      "js": ["myContentScript.bundle.js"]
    }
  ]
}

Packing

After the development of your extension run the command

$ NODE_ENV=production yarn build

Now, the content of build folder will be the extension ready to be submitted to the Chrome Web Store. Just take a look at the official guide to more infos about publishing.

Secrets

If you are developing an extension that talks with some API you probably are using different keys for testing and production. Is a good practice you not commit your secret keys and expose to anyone that have access to the repository.

This code import the file ./secrets.<THE-NODE_ENV>.js on your modules through the module named as secrets, so you can do things like this:

./secrets.development.js

export default { key: '123' };

./src/popup.js

import secrets from 'secrets';
ApiCall({ key: secrets.key });

👉 The files with name secrets.*.js already are ignored on the repository.

Resources:


Credit:

React Chrome Extension Boiler Plate Template:

About

This is an Atomix Chrome Extension that wrap arounds ChatGPT, providing additional features while improving the accessibility of the chatbot on Chrome browser as a sidebar.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published