Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/romaindoyen/todolist-extension

This is a simple todolist extension for chrome.
https://github.com/romaindoyen/todolist-extension

chrome-extension firefox-extension react supabase vitejs

Last synced: about 1 month ago
JSON representation

This is a simple todolist extension for chrome.

Awesome Lists containing this project

README

        

# Todolist Extension

todolist extension icon

## Description

This is a simple todolist extension for chrome.

# Install dependencies

```bash
pnpm install
```

# Config .env file with the connection Supabase

```bash
VITE_SUPABASE_URL=https://.supabase.co
VITE_SUPABASE_ANON_KEY=
```

# Prisma

initial schema

```bash
npx prisma init
```
Run a migration to create your database tables with Prisma Migrate

```bash
npx prisma migrate dev --name init
```

# Build and install extension

## Build extension

```bash
pnpm build-extension
```
## Install extension in Chrome

1. Open Chrome
1. Go to `chrome://extensions/`
2. Enable `Developer mode`
3. Click on `Load unpacked`
4. Select the `dist` folder
5. The extension should be installed

## Install extension in Firefox

1. Open Firefox
2. Go to `about:debugging#/runtime/this-firefox`
3. Click on `Load Temporary Add-on`
4. Select the `dist/manifest.json` file
5. The extension should be installed