KeyCat
KeyCat web-extension
什么是KeyCat?
KeyCat是由acasajus开发的Chrome扩展程序,该扩展的主要功能是“KeyCat web-extension”。
扩展截图
下载KeyCat扩展crx文件
下载KeyCat扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Key.cat can manage all your credentials and lets you share them with others. The idea is to make a password manager that can work offline and sync when there's a connection available to the server. Like an auto-sync keepass. Everything is encrypted end-to-end using NaCL via tweetnacl.js. No metadata leaks. No metadata is stored unencrypted. Single executable for the server. Can import from keepass (v.3 for now). Multiple teams and vaults. Each team and vault can be independently managed and shared with others. Multiple credentials per site. API available to third-party software. More info is in the wiki!
扩展基本信息
名称 | |
ID | njolgkicibdplnchcojfmckpcbhgaggg |
官方URL | https://chrome.google.com/webstore/detail/keycat/njolgkicibdplnchcojfmckpcbhgaggg |
简介 | KeyCat web-extension |
文件大小 | 1.1 MB |
安装次数 | 17 |
当前版本 | 0.0.16 |
更新时间 | 2019-06-06 |
上架时间 | 2019-06-05 |
开发者 | acasajus |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://key.cat |
隐私政策页面URL | http://key.cat/privacy.html |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "KeyCat", "description": "KeyCat web-extension", "version": "0.0.16", "manifest_version": 2, "icons": { "48": "icons\/icon_48-on.png", "128": "icons\/icon_128-on.png" }, "permissions": [ "tabs", "storage", "clipboardWrite", "idle", "http:\/\/*\/*", "https:\/\/*\/*", "webRequest", "webRequestBlocking" ], "browser_action": { "default_title": "KeyCat", "default_popup": "popup\/popup.html" }, "background": { "scripts": [ "background\/main.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content\/autofill.js", "content\/autofiller.js", "content\/notificationBar.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "run_at": "document_start" }, { "all_frames": true, "css": [ "content\/autofill.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "run_at": "document_end" } ], "web_accessible_resources": [ "notification\/bar.html" ], "applications": { "gecko": { "id": "{fdd2f6f0-0ea5-4abe-8ba9-26cff6dcbf99}" } } } |