Team Password Manager
Autofill login forms and store web passwords in Team Password Manager
What is Team Password Manager?
Team Password Manager is a Chrome extension developed by https://teampasswordmanager.com, and its main feature is "Autofill login forms and store web passwords in Team Password Manager".
Extension Screenshots
Download Team Password Manager Extension CRX File
Download Team Password Manager extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Team Password Manager Chrome Extension allows Chrome users to fill in login forms from credentials stored in Team Password Manager. This extension also allows to store web passwords in Team Password Manager. Team Password Manager is a self hosted web based password manager for groups.
Extension Basic Information
Name | Team Password Manager |
ID | gplomcegacfeolmacnhpopbindboipfl |
Official URL | https://chromewebstore.google.com/detail/team-password-manager/gplomcegacfeolmacnhpopbindboipfl |
Description | Autofill login forms and store web passwords in Team Password Manager |
File Size | 316 KB |
Installation Count | 8,049 |
Current Version | 4.21.19 |
Last Updated | 2022-11-25 |
Publish Date | 2021-05-03 |
Rating | 4.13/5 Total 8 Ratings |
Developer | https://teampasswordmanager.com |
[email protected] | |
Payment Type | free |
Extension Website | https://teampasswordmanager.com/ |
Help Page URL | https://teampasswordmanager.com/support/ |
Privacy Policy Page URL | https://teampasswordmanager.com/privacy |
Supported Languages | de,en,fr,es,pt-BR,pt-PT,cs |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Team Password Manager", "description": "__MSG_ManifestDescription__", "version": "4.21.19", "manifest_version": 2, "default_locale": "en", "icons": { "32": "img\/logo32.png", "48": "img\/logo48.png" }, "browser_action": { "default_icon": { "19": "img\/ba19g.png", "38": "img\/ba38g.png" }, "default_popup": "popup.html", "default_title": "Team Password Manager (__MSG_bgNotConnected__)" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery-3.5.1.min.js", "js\/contentscript.js", "js\/psl.js", "js\/jquery.sendkeys.js", "js\/bililiteRange.js" ], "run_at": "document_end", "all_frames": true } ], "background": { "page": "background.html" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "tabs", "clipboardWrite" ], "web_accessible_resources": [ "img\/*", "js\/login_selector\/*" ] } |