https://github.com/talljack/chrome-extension-really-boss
It's help you filter headhunter when you use boss to find jobs
https://github.com/talljack/chrome-extension-really-boss
Last synced: about 1 year ago
JSON representation
It's help you filter headhunter when you use boss to find jobs
- Host: GitHub
- URL: https://github.com/talljack/chrome-extension-really-boss
- Owner: Talljack
- License: mit
- Created: 2024-04-25T07:24:22.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-25T14:44:19.000Z (about 2 years ago)
- Last Synced: 2025-01-21T04:16:40.521Z (over 1 year ago)
- Language: TypeScript
- Size: 130 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Chrome Extension Starter Template
This is a starter template for building a Chrome Extension. It includes a basic manifest file and a popup page.
## Prerequisites
- [Node.js](https://nodejs.org/en/)
- [NPM](https://www.npmjs.com/)
## Includes the following
- [Vite](https://vitejs.dev/)
- [React](https://reactjs.org/)
- [Typescript](https://www.typescriptlang.org/)
- [Vitest](https://vitest.dev/)
- Example Code
- Storage
- content script
- background script
- popup page
- options page
## Getting Started
1. Use this template to create a new repository
2. Use Vscode to open the project
3. setup the project
```bash
pnpm install
```
## Build
```bash
pnpm build
```
## Watch
```bash
pnpm run watch
```
## Load extension to Chrome
1. Open the Extension Management page by navigating to chrome://extensions.
2. Load `dist` directory
## Test
some test files in `/src/background/test` directory, you can write your owner tests.
```bash
pnpm test
```