Hypervault
A password manager for teams. Check out hypervault.com for more information.
What is Hypervault?
Hypervault is a Chrome extension developed by https://hypervault.com, and its main feature is "A password manager for teams. Check out hypervault.com for more information.".
Extension Screenshots
Download Hypervault Extension CRX File
Download Hypervault 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
Hypervault is a Sensitive Data Manager helping teams and companies securely manage more than just passwords, in the most efficient way.
Extension Basic Information
Name | Hypervault |
ID | ibgdljgnoeaobeknnbhkeiddjabgpakm |
Official URL | https://chromewebstore.google.com/detail/hypervault/ibgdljgnoeaobeknnbhkeiddjabgpakm |
Description | A password manager for teams. Check out hypervault.com for more information. |
File Size | 659 KB |
Installation Count | 233 |
Current Version | 1.50 |
Last Updated | 2022-06-28 |
Publish Date | 2021-07-24 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://hypervault.com |
[email protected] | |
Payment Type | free |
Extension Website | https://hypervault.com |
Help Page URL | https://help.hypervault.com |
Privacy Policy Page URL | https://www.hypervault.com/legal/privacy-policy |
Supported Languages | 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" ] } |