EuSonLito - Password Manager
Easy Connect from Chrome with your own Password Manager Platform
什么是EuSonLito - Password Manager?
EuSonLito - Password Manager是由eordes开发的Chrome扩展程序,该扩展的主要功能是“Easy Connect from Chrome with your own Password Manager Platform”。
扩展截图
下载EuSonLito - Password Manager扩展crx文件
下载EuSonLito - Password Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This Chrome extension connects with Password Manager Platform https://github.com/eusonlito/Password-Manager to allow access to passwords directly from any website.
Source Code published in https://github.com/eusonlito/Password-Manager-Chrome 扩展基本信息
| 名称 | |
| ID | mkbgfbjaoibojobjpimpkaofckkgknhi |
| 官方URL | https://chromewebstore.google.com/detail/eusonlito-password-manage/mkbgfbjaoibojobjpimpkaofckkgknhi |
| 简介 | Easy Connect from Chrome with your own Password Manager Platform |
| 文件大小 | 23.47 KB |
| 安装次数 | 52 |
| 当前版本 | 0.0.2 |
| 更新时间 | 2023-09-13 |
| 上架时间 | 2022-04-07 |
| 开发者 | eordes |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/eusonlito/Password-Manager-Chrome |
| 帮助页面URL | https://github.com/eusonlito/Password-Manager |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "EuSonLito - Password Manager",
"description": "Easy Connect from Chrome with your own Password Manager Platform",
"version": "0.0.2",
"manifest_version": 3,
"author": "Lito",
"icons": {
"128": "icon.png"
},
"action": {
"default_title": "Password Manager",
"default_icon": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"permissions": [
"activeTab",
"tabs",
"scripting",
"storage"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
} | |