Svelte and Tailwind for Chrome Extension

A step-by-step guide on how to create a Chrome Extension using Svelte and Tailwind CSS

Thursday, February 16, 2023

power extensions

Introduction

This article will show you how to create a Chrome Extension using hot frameworks such as Svelte and Tailwind CSS. This will also use the very popular Vite as the build tool.


Here are some definitions of the tech choices according to ChatGPT.

What is Svelte?

Svelte is a JavaScript framework that compiles your code into efficient JavaScript that surgically updates the DOM. It is a compiler that converts your code into a more efficient version of itself.

What is a Chrome Extension?

A Chrome extension is a software program that extends the functionality of Google Chrome. It modifies the browser's behavior and adds new features.

What is Tailwind CSS?

TailwindCSS is a utility-first CSS framework for rapidly building custom user interfaces. It is a CSS framework that provides a set of pre-built classes that can be used to style your HTML elements.

NOTE: This might be an overcomplicated setup for a simple Chrome Extension. On larger projects, we will see the benefits of using the mentioned tools to improve the development process.

Setting up the project

Make sure you have node.js v16.x or greater

Install Svelte

Initialize the project using vite


  1. Select a project name
  2. Select Svelte
  3. Select TypeScript
  4. Follow the output instruction

Open the URL in a browser, and you should see the following result.

GIF

Install Tailwind

  1. Install Tailwind dependencies

  1. Initialize default Tailwind configuration

  1. Make sure to enable use of POSTCSS in style blocks

  1. Configure content paths

  1. Replace the content of src/app.css with the following


Testing Tailwind integration

Add tailwind styles

Add any styles that will be obvious when the app is running.


And you should see the following result. We have a heading with dark-red background and light-red text.

GIF

Remove unused files

Now that we verify that the app is working as expected, we can remove the unused files.

  1. Delete src/App.svelte
  2. Delete src/main.ts
  3. Delete index.html
  4. Delete src/assets/svelte.png
  5. Delete src/lib folder

Create a very basic chrome extension

Install Chrome Extension Library for vite

Instead of complicating the setup, we will crxjs to help us simplify the development process.


Create a manifest file

The manifest file contains the necessary information for the browser to load the extension. For more information, check out the Chrome Extension Manifest


NOTE: The storage permission is added because we will use it later.

Add the plugin to vite.config.js



Optional configuration for TypeScript

Update TypeScript configuration files

For some reason, scripts work as expected until these options are added



Improve Chrome Plugin TypeScript support

To get better TypeScript support, install the chrome type definitions



Create the content of the popup plugin

Creating the content of the plugin is as simple as creating a web typical page. We still use HTML, JavaScript, and CSS. The obvious difference is where we can view the content.

The markup below is the content that will be displayed when the popup extension is opened.


It is important to match the absolute file path with the one in the manifest file.


Create the script file to load CSS(and other stuff)

To make sure Tailwind styles are processed, don't forget to import the CSS file in the script file.


Again, it is important to match the relative file path in the script tag


Build and load the extension

  1. Run npm run dev or npm run build
  2. Open the chrome extension page by typing chrome://extensions in the address bar
  3. Enable the developer mode
  4. Click on the Load unpacked button
  5. Select the dist folder
  6. Open the extension menu; then, click the loaded extension
GIF

Add interaction using Svelte

Now let's make the extension interactive. We will create a counter that will be saved in the browser storage.

Create a reusable counter component

Create a simple and reusable counter component that can be used in any part of the application.


If the code above does not make any sense, check out the Svelte tutorial

Update the popup script


Remove unnecessary stuff in the HTML file


Re-test the extension

There should be no need to rebuild the app because crxjs has HMR enabled by default. If not, just reload the extension.

GIF

Create a New Tab extension

A new tab extension is an extension that replaces the default new tab page with a custom one. Creating a new tab extension is almost the same as creating a popup extension. The only difference is the manifest file.


Copy-paste the popup HTML file to the new tab HTML file


Copy-paste the popup JS file to the new tab JS file


Re-test the extension

Just like magic, the new tab extension is working.

GIF

(BONUS) Awesome HMR support

By default, crxjs has HMR enabled. This is a big productivity boost for developers!!!

GIF

Repository

Check the source code here


What's next