A Chrome new tab extension that shows a random quote.
Based on antfu/vitesse-webext.
bun install
bun run devLoad the extension/ folder in Chrome via chrome://extensions with Developer mode on.
The release script bumps the version, builds, packs, and creates a git tag in one command.
bun run release # patch bump: 0.0.7 โ 0.0.8
bun run release:minor # minor bump: 0.0.7 โ 0.1.0
bun run release:major # major bump: 0.0.7 โ 1.0.0This will:
- Bump the version in
package.json - Run
bun run build - Run
bun run pack(outputsextension.zip,extension.crx,extension.xpi) - Commit the version bump, tag it, and push to origin
bun run build
bun run pack:zip
# outputs extension.zip- Go to Chrome Web Store Developer Dashboard
- Select your extension
- Click Package โ Upload new package
- Upload
extension.zip - Click Submit for review