This browser extension provides a way to programmatically parse prompts and automatically fill in the corresponding response for websites using security/challenge grids as an additional authentication mechanism, such as Entrust eGrid and Deepnet Security GridID.
NOTICE OF NON-AFFILIATION: Neither this extension nor the extension author are affiliated, associated, authorized, endorsed by, or in any way officially connected with Entrust Corporation, Deepnet Security, or any of their respective subsidiaries or affiliates.
- Parses challenge prompts and automatically enters the corresponding response for the selected grid from a context menu and/or the browser action menu
- Store multiple grids directly in your browser and sync them across multiple devices
- Quickly import grids from CSV files and/or use the built-in grid editor
- Optionally automatically submit the challenge form after entering a response
- Optionally force the UI elements of this extension to use Dark Mode
Web Browser | Information & Downloads |
---|---|
Google Chrome | |
Microsoft Edge | |
Mozilla Firefox |
Contributions are always welcome! Even if you aren't comfortable coding, you can always submit new ideas and bug reports.
This extension is setup to be fully localized/translated into multiple languages, but for now English is the only language with full translations. If you are able to help localize/translate, please check out this guide. All of the text for the extension is stored here in the /app/_locales
directory.
This extension uses the WebExtension Toolbox for development and build processes.
To build the extension from source code, you will need to use Node Package Manager (npm), which handles all of the dependencies needed for this project and is used to execute the various scripts for development/building/packaging/etc.
npm install
Then you can run the development process (where the extension is auto-reloaded when changes are made) for your browser of choice:
npm run dev <chrome/edge/firefox>
Or you can generate a production build for your browser of choice:
npm run build <chrome/edge/firefox>
To make development easier, you can start up a temporary development profile on Mozilla Firefox or Google Chrome with the extension already loaded. The browser will also automatically detect changes and reload the extension for you (read more about this on the web-ext
documentation pages). Use the following commands in parallel to re-build the extension and re-load it in Firefox/Chrome automatically as you make changes:
Firefox:
npm run dev firefox
npm run start:firefox
Chrome:
npm run dev chrome
npm run start:chrome
Note that you will need 2 terminal instances, one for each of the above commands, as they both remain running until you cancel them (use CTRL + c to cancel each process in your terminal(s)).