So about a week ago I made a post of my fingerprint authentication application.
This is the chrome extension used to integrate the password manager functionallity.
It depends on the previous applications to work, basically it's a password manager, like the one built into browsers, it just stores credentials on your phone, and accesses them with your fingerprint!
It's based on the previous project, so:
The extension is written in JavaScript mainly, with small HTML and CSS for the minimalist UI that I came up with. There's also JSON in the manifest.json file, this file is required for extensions.
It communicates with the NativeApp on 127.0.0.1:80 over HTTP. I think HTTP is ok here, because the traffic, doesn't leave your computer, it's handled by the loopback interface. However if you think it's a problem, just open an issue with your suggestions on how to fix it.
For the communication between the NativeApp and the PhoneApp you can take a look at the previous post!
I wrote a pretty good list of contributions, this project needs, but of course, any type of contribution is welcome!
For the contribution guide, read the contributing.md file on the project's github page.
But I put a short version of it here:
To contribute you can:
Fingerprint Authentication based password manager is here!
Login to websites by touching a sensor!
Please consider contibuting if you can, it would help the project to grow!
Thank you for reading this post!
Native App
Phone App
Previous Post/Introduction