Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xxczaki/ing-autofill
[Works in 2024] Make password managers autofill work on the ING bank's website.
https://github.com/xxczaki/ing-autofill
1password autofill bitwarden browser-extension chrome chrome-extension ing ing-bank masked-password password-manager security
Last synced: 28 days ago
JSON representation
[Works in 2024] Make password managers autofill work on the ING bank's website.
- Host: GitHub
- URL: https://github.com/xxczaki/ing-autofill
- Owner: xxczaki
- License: mit
- Created: 2023-07-30T22:19:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-30T16:09:37.000Z (5 months ago)
- Last Synced: 2024-07-30T19:53:41.477Z (5 months ago)
- Topics: 1password, autofill, bitwarden, browser-extension, chrome, chrome-extension, ing, ing-bank, masked-password, password-manager, security
- Language: TypeScript
- Homepage: https://chrome.google.com/webstore/detail/ing-autofill/lkaklgijolidfahcedddhaaedbbaiomo
- Size: 242 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ING Autofill
> Make password managers autofill work on the ING bank's website.
## Why?
As a 1Password user, I hated the fact that my bank uses a masked password strategy β it renders the autofill functionality useless and forces me to use the "Show in Large Type" functionality.
When I first realized that my password manager does not support autofilling masked passwords, I stumbled upon some threads on the 1Password forum. I did not, however, search for any existing solutions to this problem at that time, nor before starting coding this utility a few years later.
Out of pure Sunday boredom, I gave myself an hour to create the simplest Chrome extension that would fix this annoying issue.
After making something that works as expected, I searched for some alternatives and found:
- https://github.com/piotr-sarna/ING-Password-Filler
- https://chrome.google.com/webstore/detail/ing-%20-1password-autofill/heagjbohbnbaioaiekgioabidmgoihdc?hl=plI did not bother trying them, but a first glance instantly revealed some issues:
- the former project seems overly complex; using Svelte to inject another form into the login page π€
- the latter is not open-source and only available via the Chrome Web Store; this is a no-go for security-focused utilities in my opinion, especially when it comes to online bankingTherefore, I felt happy with what I came up with.
In May 2024, I updated the extension so that it now works on ING's new website.
## Highlights
- Simple (a single file, <100 LOC, easy to understand)
- Uses Manifest V3, with a minimal number of permissions## How does it work?
1. We create hidden inputs for both the username and the password, making sure password managers will see them and autofill accordingly.
2. Once the hidden login input gets autofilled, we fill the actual login input click on the "Next" button.
3. Once the hidden password input gets autofilled, we fill the actual masked password inputs accordingly and click on the final "Login" button.## Supported password managers
- 1Password
- Bitwarden> [!NOTE]
> Other password managers may work as well; this list only includes those which were tested and confirmed to be working.## Automatic installation
- [**Chrome Web Store**](https://chrome.google.com/webstore/detail/ing-autofill/lkaklgijolidfahcedddhaaedbbaiomo)
- [**Firefox Add-ons**](https://addons.mozilla.org/en-US/firefox/addon/ing-autofill/)## Manual installation
### Chromium-based browsers
1. Clone or download this repository into a folder somewhere on your computer.
2. Enter `chrome://extensions/` in the address bar.
3. At the top right, turn on **Developer mode**.
4. Click **Load unpacked**.
5. Select the folder from step 1.### Firefox-based browsers
1. Download this repository into a folder somewhere on your computer.
2. Enter `about:debugging#/runtime/this-firefox` in the address bar.
3. Click **Load Temporary Add-onβ¦**.
4. Select the `manifest.json` file located in the folder you created in step 1.
5. Go to ING's login page and, from the extensions menu, make sure to grant the extension access to the page:![Screenshot showing how to grant the extension access to the page](/assets/firefox-help.png)
> [!IMPORTANT]
> Temporary add-ons are removed when Firefox is restarted.## Development
1. Make sure you have [Node.js](https://nodejs.org/) v20 installed, with [Corepack enabled](https://nodejs.org/api/corepack.html#enabling-the-feature).
2. Run `pnpm install` to install the required dependencies.
3. Run `pnpm build && pnpm package` to build and pack the extension into a `bundle.zip` file.## License
MIT