Hypervault
A password manager for teams. Check out hypervault.com for more information.
Hypervaultとは何ですか?
Hypervaultはhttps://hypervault.comによって開発されたChromeの拡張機能で、その主な機能は「A password manager for teams. Check out hypervault.com for more information.」です。
拡張機能のスクリーンショット
Hypervault拡張機能のCRXファイルをダウンロード
Hypervault拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Hypervault is a Sensitive Data Manager helping teams and companies securely manage more than just passwords, in the most efficient way. 拡張機能の基本情報
| 名前 | |
| ID | ibgdljgnoeaobeknnbhkeiddjabgpakm |
| 公式URL | https://chromewebstore.google.com/detail/hypervault/ibgdljgnoeaobeknnbhkeiddjabgpakm |
| 説明 | A password manager for teams. Check out hypervault.com for more information. |
| ファイルサイズ | 659 KB |
| インストール数 | 233 |
| 現在のバージョン | 1.50 |
| 最終更新日 | 2022-06-28 |
| 公開日 | 2021-07-24 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | https://hypervault.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://hypervault.com |
| ヘルプページのURL | https://help.hypervault.com |
| プライバシーポリシーページのURL | https://www.hypervault.com/legal/privacy-policy |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Hypervault",
"homepage_url": "https:\/\/hypervault.com",
"description": "A password manager for teams. Check out hypervault.com for more information.",
"version": "1.50",
"permissions": [
"storage",
"windows",
"webNavigation",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"icons": {
"16": "favicon-16x16.png",
"32": "favicon-32x32.png",
"192": "android-chrome-192x192.png",
"512": "android-chrome-512x512.png"
},
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/apis.google.com https:\/\/fonts.gstatic.com https:\/\/fonts.googleapis.com; object-src 'self';",
"content_scripts": [
{
"all_frames": false,
"js": [
"js\/main.js"
],
"css": [
"assets\/css\/autocomplete-modal.css",
"assets\/css\/autocomplete-trigger.css",
"assets\/css\/save-login-modal.css"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/\/*"
],
"run_at": "document_end"
}
],
"browser_action": {
"default_popup": "browser_action.html",
"default_title": "Hypervault",
"default_icon": {
"16": "favicon-16x16.png",
"32": "favicon-32x32.png",
"192": "android-chrome-192x192.png",
"512": "android-chrome-512x512.png"
}
},
"web_accessible_resources": [
"autocomplete.html",
"save_login.html",
"logo-greyscale.svg",
"logo-greyscale-transparent.svg"
]
} | |