forked from browserpass/browserpass-extension
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
browserpass copy and fill actions work for FF and Chrome MV3, need to…
… troubleshoot alarm to clear clipboard. browserpass#320
- Loading branch information
Patrick Miller
committed
Dec 31, 2024
1 parent
de22957
commit f948cc2
Showing
3 changed files
with
78 additions
and
30 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
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,19 +1,18 @@ | ||
{ | ||
"manifest_version": 2, | ||
"manifest_version": 3, | ||
"name": "Browserpass", | ||
"description": "Browser extension for zx2c4's pass (password manager)", | ||
"version": "3.8.0", | ||
"author": "Maxim Baz <[email protected]>, Steve Gilberd <[email protected]>", | ||
"homepage_url": "https://github.com/browserpass/browserpass-extension", | ||
"background": { | ||
"persistent": true, | ||
"scripts": ["js/background.dist.js"] | ||
}, | ||
"icons": { | ||
"16": "icon16.png", | ||
"128": "icon.png" | ||
}, | ||
"browser_action": { | ||
"action": { | ||
"default_icon": { | ||
"16": "icon16.png", | ||
"128": "icon.svg" | ||
|
@@ -32,20 +31,22 @@ | |
"clipboardWrite", | ||
"nativeMessaging", | ||
"notifications", | ||
"webRequest", | ||
"webRequestBlocking", | ||
"http://*/*", | ||
"https://*/*" | ||
"scripting", | ||
"storage", | ||
"webRequest" | ||
], | ||
"content_security_policy": "default-src 'none'; font-src 'self'; img-src 'self' data:; script-src 'self'; style-src 'self'", | ||
"applications": { | ||
"host_permissions": ["http://*/*", "https://*/*"], | ||
"content_security_policy": { | ||
"extension_pages": "default-src 'none'; font-src 'self'; img-src 'self' data:; script-src 'self'" | ||
}, | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "[email protected]", | ||
"strict_min_version": "54.0" | ||
} | ||
}, | ||
"commands": { | ||
"_execute_browser_action": { | ||
"_execute_action": { | ||
"suggested_key": { | ||
"default": "Ctrl+Shift+L" | ||
} | ||
|