Chrome 插件生成器,支持多种框架模板!
- 🚀 敏捷的热更能力(采用 Vite4)
- 🥡 开箱即用
- 🌈 多种前端框架支持(React · Vue · Svelte · Preact · Solid · Alpine · Lit · Inferno · Stencil · Vanilla)
- 🥢 多语言支持(JavaScript · TypeScript)
English · 简体中文 · French · 한국어 · Indonesian · Русский · Deutsch · 日本語 (by ChatGPT)
Node >= 14.18.0
# 使用 npm create 命令
λ npm create chrome-ext
# 或者使用 npx 命令
λ npx create-chrome-ext
# 或者使用 npm init 命令
λ npm init chrome-ext
您还可以通过其他命令行配置直接指定项目名称和要使用的模板。比如 Vite + Svelte 项目,运行:
# npm 6.x
λ npm create chrome-ext@latest my-crx-app --template svelte-js
# npm 版本 7 以上, 注意 -- 命令选项
λ npm create chrome-ext@latest my-crx-app -- --template react-ts
# or yarn
λ yarn create chrome-ext my-crx-app --template vue-ts
# or pnpm
λ pnpm create chrome-ext my-crx-app --template vanilla-ts
You can also generator the project with crx
cli, run:
λ npm install create-chrome-ext --global
# and then
λ crx my-crx-app
# or
λ crx my-crx-app --template preact-js
# or use create-chrome-exe (global env)
λ create-chrome-ext my-crx-app