https://github.com/hpedrorodrigues/site-indicator
A chrome extension to help quickly identify websites
https://github.com/hpedrorodrigues/site-indicator
chrome-extension
Last synced: 3 months ago
JSON representation
A chrome extension to help quickly identify websites
- Host: GitHub
- URL: https://github.com/hpedrorodrigues/site-indicator
- Owner: hpedrorodrigues
- License: apache-2.0
- Created: 2023-10-14T02:44:19.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-01T23:17:13.000Z (over 1 year ago)
- Last Synced: 2025-06-23T21:13:11.768Z (4 months ago)
- Topics: chrome-extension
- Language: TypeScript
- Homepage: https://chromewebstore.google.com/detail/site-indicator/jpipimaonfgahpepmjnhbbafgceikfal
- Size: 1.86 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Site Indicator
A tiny extension to help me learn more about AntD and how extensions work.
Boilerplate used to create this project: [Chrome Extension (MV3) Boilerplate with React 18 and Webpack 5][boilerplate].
## Installing and Running
1. Install dependencies with `npm ci`.
1. Run the local web server with `npm start`.
1. Load the extension on Brave/Chrome:
1. Access the extensions page (e.g., `brave://extensions`, `chrome://extensions`).
1. Check `Developer mode`.
1. Click on `Load unpacked`.
1. Select the `build` folder.## Release process
In order to release a new version, follow these steps:
1. Update the `version` in `package.json`.
1. Run `npm install` (this will update the lock file).
1. Create a tag in GitHub with the pattern `v*` (use the same version declared in `package.json`).
- e.g., `git tag v && git push origin v`[boilerplate]: https://github.com/lxieyang/chrome-extension-boilerplate-react