├── .github ├── FUNDING.yml └── workflows │ └── publish.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── LICENSE.md ├── README.md ├── eslint.config.mjs ├── icon.svg ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── screenshots ├── demo.gif └── settings.png ├── src ├── features │ └── quick-todo │ │ └── index.tsx ├── handle-popup.ts ├── index.tsx ├── settings.ts └── styles │ ├── bg.css │ └── theme.ts ├── tsconfig.json └── vite.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [hkgnp] 2 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/icon.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /screenshots/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/screenshots/demo.gif -------------------------------------------------------------------------------- /screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/screenshots/settings.png -------------------------------------------------------------------------------- /src/features/quick-todo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/src/features/quick-todo/index.tsx -------------------------------------------------------------------------------- /src/handle-popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/src/handle-popup.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/styles/bg.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: none !important; 3 | } 4 | -------------------------------------------------------------------------------- /src/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/src/styles/theme.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-quicktodo-plugin/HEAD/vite.config.ts --------------------------------------------------------------------------------