Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/romaindoyen/todolist-extension
- Owner: RomainDoyen
- Created: 2024-08-09T04:23:05.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-11-02T16:15:18.000Z (2 months ago)
- Last Synced: 2024-11-02T17:20:42.456Z (2 months ago)
- Topics: chrome-extension, firefox-extension, react, supabase, vitejs
- Language: TypeScript
- Homepage:
- Size: 785 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todolist Extension
## 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 Chrome1. 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