forked from Dmitry1987/vault-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto-renew tokens before they expire
Also try to negotiate a 24-hour long token upon login to avoid having to re-authenticate too often (for example after computer has been turned off overnight) Upgrade to latest version of polyfill Improve username/password field search algorithm Fix Firefox compatibility as the badge count was not visible
- Loading branch information
Showing
12 changed files
with
300 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
{ | ||
"manifest_version": 3, | ||
"name": "VaultPass", | ||
"description": "A Chrome extension to leverage Hashicorp Vault as Credential Storage for teams", | ||
"version": "2.3.3", | ||
"action": { | ||
"default_icon": "icons/logo128.png", | ||
"default_popup": "popup.html", | ||
"default_title": "VaultPass" | ||
}, | ||
"icons": { | ||
"48": "icons/logo48.png", | ||
"128": "icons/logo128.png" | ||
}, | ||
"content_security_policy": { | ||
"extension_pages": "script-src 'self'; object-src 'self'" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"matches": ["<all_urls>"], | ||
"js": ["browser-polyfill.min.js", "content.js", "common.js"] | ||
} | ||
], | ||
"background": { | ||
"service_worker": "background.js" | ||
}, | ||
"permissions": ["activeTab", "storage", "clipboardWrite"] | ||
} | ||
{ | ||
"manifest_version": 3, | ||
"name": "VaultPass", | ||
"description": "A Chrome extension to leverage Hashicorp Vault as Credential Storage for teams", | ||
"version": "2.3.3", | ||
"action": { | ||
"default_icon": "icons/logo128.png", | ||
"default_popup": "popup.html", | ||
"default_title": "VaultPass" | ||
}, | ||
"icons": { | ||
"48": "icons/logo48.png", | ||
"128": "icons/logo128.png" | ||
}, | ||
"content_security_policy": { | ||
"extension_pages": "script-src 'self'; object-src 'self'" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"matches": ["<all_urls>"], | ||
"js": ["browser-polyfill.min.js", "content.js", "common.js"] | ||
} | ||
], | ||
"background": { | ||
"service_worker": "background.js" | ||
}, | ||
"permissions": ["activeTab", "storage", "clipboardWrite", "idle"] | ||
} |
Oops, something went wrong.