- Node.js ^20.9.0
- PNPM package manager
- Any Chromium-based browser (Chrome, Edge, Brave, etc.)
- Firefox is NOT supported for running the dev environment
-
Clone the repository
-
Install dependencies:
pnpm install
-
Start the development server:
pnpm dev
- At the current size of the project, dev server might take up to 30 seconds to finish transpiling the necessary code for the extension to work.
- HMR not working? Refer to HMR Support.
-
Enable "Developer mode" in your browser
-
Load the extension from the
dist
folder
# Build for Chrome
pnpm build
# Build for Firefox
pnpm build:firefox
# Build for both browsers and create .zip distribution packages
pnpm zip:both
- Prettier TailwindCSS class sorting
- In addition to common TypeScript/React ESLint rules, this project includes some specific rules:
- Enforces strict null checks (
@typescript-eslint/strict-boolean-expressions
) - Enforces specific filename casing (
PascalCase
,kebab-case
,camelCase
) - Provides automatic global imports via
unimport
(see config) - Enforces import scoping via
eslint-plugin-boundaries
to maintain a clean architecture with clear dependency directions (see config)
- Enforces strict null checks (
pnpm esl
: Run ESLintpnpm eslq
: Run ESLint but only show errorspnpm eslf
: Run ESLint with auto-fixpnpm fmt
: Format all code with Prettierpnpm clean
: Deletenode_modules
anddist
directories- Unit tests with Vitest
pnpm test
: Run testspnpm test:ui
: Run tests with UI
- End-to-end tests with Playwright
- Currently only boilerplate code, working unreliable due to Cloudflare protection
- File exclusions to keep the explorer clean
- You might want to adjust
typescript.tsserver.maxTsServerMemory
to match your system's specs - TailwindCSS (v4) IntelliSense support for jQuery's methods
- i18n-ally (
lokalise.i18n-ally
) pre-configured