this is a fork of the Kagi Search Extension that removes FastGPT and their AI Summarizer from the Firefox and Chrome extensions. The Safari extension is pretty untouched. It anyone has experience there and wants to work on that, PRs are welcome.
there is a signed version of the firefox extension over in the releases section. since it is signed, it can be used on the Firefox and Firefox Beta versions.
This contains the source for the Kagi Search extension for Firefox and Chrome.
Get it for your browser here:
- Sets Kagi as your default search engine
- Automatic login when searching in incognito/private browsing
- ... more in the future!
To build the extension, you will need node and npm installed.
- Obtain the files from this repo, either via
git clone https://github.com/kagisearch/browser_extensionsor by downloading the source zip. - run
npm ito installadm-zipwhich is used to package up the files. - You can now run
npm run build-firefoxornpm run build-chrometo zip up the relevant files and output a zip file.
You can also download a pre-packaged zip from our releases page.
First, obtain the source code from the release page:
Or by cloning the repo:
git clone https://github.com/kagisearch/browser_extensions
- Head to
about:debugging - Click on "This Firefox"
- Click "Load Temporary Add-On"
- Select the zip file or manifest.json of the extension.
- Head to
chrome://extensions - Turn on "Developer mode" in the top right and then some new buttons will pop up.
- Click on
Load unpacked extension - Select the zip file or you may have to unzip the zip and select the folder outputted from extraction.
Bugfixes and improvements to the extension's code are welcome!
At the time we are not accepting PRs for new features without prior approval.
You can inquire about new features or report bugs here:
- Fork it (https://github.com/kagisearch/browser_extensions/fork)
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request
Check the recommended and required node and npm versions in the package.json and .nvmrc files.
npm ci # install dependencies
npm run watch-firefox # builds the firefox zip file and unzips it into the `built/` directory every time a file changes
npm run watch-chrome # builds the chrome zip file and unzips it into the `built/` directory every time a file changes
npm run format # formats the codenpm run test # runs the linter & formatter checks
npm run build # builds the chrome and firefox zip files in the `built/` directory
npm run build-firefox # builds the firefox zip file in the `built/` directory
npm run build-chrome # builds the chrome zip file in the `built/` directory