Team Password Manager
Autofill login forms and store web passwords in Team Password Manager
Что такое Team Password Manager?
Team Password Manager - это расширение Chrome, разработанное https://teampasswordmanager.com, и его основная функция - "Autofill login forms and store web passwords in Team Password Manager".
Снимки экрана расширения
Скачать файл CRX расширения Team Password Manager
Скачайте файлы расширений Team Password Manager в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Team Password Manager |
ID | gplomcegacfeolmacnhpopbindboipfl |
Официальный URL | https://chromewebstore.google.com/detail/team-password-manager/gplomcegacfeolmacnhpopbindboipfl |
Описание | Autofill login forms and store web passwords in Team Password Manager |
Размер файла | 316 KB |
Количество установок | 8,049 |
Текущая Версия | 4.21.19 |
Последнее Обновление | 2022-11-25 |
Дата публикации | 2021-05-03 |
Рейтинг | 4.13/5 Всего 8 оценок |
Разработчик | https://teampasswordmanager.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://teampasswordmanager.com/ |
URL страницы помощи | https://teampasswordmanager.com/support/ |
URL страницы политики конфиденциальности | https://teampasswordmanager.com/privacy |
Поддерживаемые языки | 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\/*" ] } |