https://github.com/paulcoding810/dicto
minimal dictionary extension
https://github.com/paulcoding810/dicto
addon dictionary extension
Last synced: 8 months ago
JSON representation
minimal dictionary extension
- Host: GitHub
- URL: https://github.com/paulcoding810/dicto
- Owner: paulcoding810
- License: mit
- Created: 2025-08-10T17:56:06.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-08-20T14:22:57.000Z (8 months ago)
- Last Synced: 2025-08-20T16:28:19.841Z (8 months ago)
- Topics: addon, dictionary, extension
- Language: JavaScript
- Homepage:
- Size: 163 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# dicto
> a chrome/firefox extension tools built with Vite + React-js, and Manifest v3
## Installing
1. Check if your `Node.js` version is >= **14**.
2. Change or configurate the name of your extension on `src/manifest`.
3. Run `yarn` to install the dependencies.
## Developing
run the command
```shell
$ cd dicto
$ yarn dev
```
### Chrome Extension Developer Mode
1. set your Chrome browser 'Developer mode' up
2. click 'Load unpacked', and select `dicto/build` folder
### Firefox Extension Developer Mode
1. Build your project firstly by running `yarn build:firefox`
2. Open Firefox and go to `about:debugging#/runtime/this-firefox`
3. Click on 'Load Temporary Add-on' and select `dicto/build` folder
## Packing
After the development of your extension run the command
```shell
$ yarn zip # for chrome
or
$ yarn zip:firefox # for firefox
```
---
Generated by [create-chrome-ext](https://github.com/guocaoyi/create-chrome-ext)