Skip to content

kerisai/shorterms-client

Repository files navigation

Shorterms Chrome Extension Client

[End Users] Installing on your Chrome browser

As we are still waiting for approval to publish on the Chrome Web Store, you can kindly try out the extension by using the ZIP file in our latest release.

Procedures:

Installing the build folder on your machine

  1. Go to Shorterms' repository and find the Release section - https://github.com/kerisai/shorterms-client/releases/tag/alpha
    image

  2. Install our release ZIP file (shorterms-0.0.1-release.zip)
    image

  3. After installation, unzip the file on your local computer, and ensure that a new folder with the same name is created
    image

Installing the extension on Chrome

  1. Open Google Chrome, and type in this link on the search bar / omnibox: chrome://extensions/
    image

  2. Activate Developer Mode toggle on the top right corner
    image

  3. Click Load Unpacked on the top left corner of the screen

  4. Upload the folder that you extracted on step 4. Note that you must upload the entire folder for this step to work.
    image

Trying out the Shorterms Extension

  1. Ensure that Shorterms extension is now installed on Chrome
    image

  2. Go to any site that has a Terms of Service link somewhere inside it - we'll use github.com/signup for this one. You'll see that the Chrome Extension automatically searches for ToS links and shows a Modal on the top right corner if they're found.

  3. Click Cmd + Shift + S to open the extension, and you can now summarize any Terms of Service on any site within a click, using Google's Gemini AI model!


[Developers] Installing and Running

Procedures:

  1. Check if your Node.js version is >= 18.
  2. Clone this repository.
  3. Change the package's name, description, and repository fields in package.json.
  4. Change the name of your extension on src/manifest.json.
  5. Run npm install to install the dependencies.
  6. Run npm start
  7. 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.
  8. Happy hacking.

Structure

All your extension's code must be placed in the src folder.

The boilerplate is already prepared to have a popup, an options page, a background page, and a new tab page (which replaces the new tab page of your browser). But feel free to customize these.

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 npm run start

Content Scripts

Although this boilerplate uses the webpack dev server, it's also prepared to write all your bundles files on the disk at every code change, so you can point, 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 npm run 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.

To this task this boilerplate 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: