Bumped version to 1.56.1 (#2333)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
(cherry picked from commit 761f025b6b)
This commit is contained in:
github-actions[bot] 2022-02-10 18:14:56 -06:00 committed by Matt Gibson
parent bf9fd2dee8
commit c620794a9b
1 changed files with 33 additions and 9 deletions

View File

@ -2,7 +2,7 @@
"manifest_version": 2, "manifest_version": 2,
"name": "__MSG_extName__", "name": "__MSG_extName__",
"short_name": "__MSG_appName__", "short_name": "__MSG_appName__",
"version": "1.56.0", "version": "1.56.1",
"description": "__MSG_extDesc__", "description": "__MSG_extDesc__",
"default_locale": "en", "default_locale": "en",
"author": "Bitwarden Inc.", "author": "Bitwarden Inc.",
@ -23,25 +23,47 @@
"content/notificationBar.js", "content/notificationBar.js",
"content/contextMenuHandler.js" "content/contextMenuHandler.js"
], ],
"matches": ["http://*/*", "https://*/*", "file:///*"], "matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"run_at": "document_start" "run_at": "document_start"
}, },
{ {
"all_frames": false, "all_frames": false,
"js": ["content/shortcuts.js"], "js": [
"matches": ["http://*/*", "https://*/*", "file:///*"], "content/shortcuts.js"
],
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"run_at": "document_start" "run_at": "document_start"
}, },
{ {
"all_frames": false, "all_frames": false,
"js": ["content/message_handler.js"], "js": [
"matches": ["http://*/*", "https://*/*", "file:///*"], "content/message_handler.js"
],
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"run_at": "document_start" "run_at": "document_start"
}, },
{ {
"all_frames": true, "all_frames": true,
"css": ["content/autofill.css"], "css": [
"matches": ["http://*/*", "https://*/*", "file:///*"], "content/autofill.css"
],
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"run_at": "document_end" "run_at": "document_end"
} }
], ],
@ -70,7 +92,9 @@
"webRequest", "webRequest",
"webRequestBlocking" "webRequestBlocking"
], ],
"optional_permissions": ["nativeMessaging"], "optional_permissions": [
"nativeMessaging"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"commands": { "commands": {
"_execute_browser_action": { "_execute_browser_action": {