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

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

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
```