https://github.com/utkarsh-singhal-26/todo-extension
https://github.com/utkarsh-singhal-26/todo-extension
chrome chrome-extension chrome-storage message-broadcasting react
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/utkarsh-singhal-26/todo-extension
- Owner: Utkarsh-Singhal-26
- Created: 2024-08-17T12:02:01.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-03T13:02:21.000Z (over 1 year ago)
- Last Synced: 2025-10-24T08:42:45.851Z (8 months ago)
- Topics: chrome, chrome-extension, chrome-storage, message-broadcasting, react
- Language: TypeScript
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 👨💻 Directory Structure
```
$ tree -I 'node_modules|cache|test_*|build|.cache|public|resources'
.
├── lerna.json
├── package.json
├── packages
│ ├── extension
│ │ ├── README.md
│ │ ├── eslint.config.js
│ │ ├── index.html
│ │ ├── package.json
│ │ ├── postcss.config.js
│ │ ├── public
│ │ │ ├── icon-48.png
│ │ │ ├── manifest.json
│ │ │ └── vite.svg
│ │ ├── src
│ │ │ ├── App.css
│ │ │ ├── App.tsx
│ │ │ ├── main.tsx
│ │ │ ├── scripts
│ │ │ │ ├── content_script.ts
│ │ │ │ └── service_worker.ts
│ │ │ └── vite-env.d.ts
│ │ ├── tailwind.config.js
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.json
│ │ ├── tsconfig.node.json
│ │ └── vite.config.ts
│ └── webapp
│ ├── README.md
│ ├── eslint.config.js
│ ├── index.html
│ ├── package.json
│ ├── postcss.config.js
│ ├── public
│ │ └── vite.svg
│ ├── src
│ │ ├── App.css
│ │ ├── App.tsx
│ │ ├── main.tsx
│ │ ├── utils
│ │ │ └── interfaces.ts
│ │ └── vite-env.d.ts
│ ├── tailwind.config.js
│ ├── tsconfig.app.json
│ ├── tsconfig.json
│ ├── tsconfig.node.json
│ └── vite.config.ts
└── pnpm-workspace.yaml
10 directories, 38 files
```