We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3d933e7 + a4eb114 commit 91e8d5fCopy full SHA for 91e8d5f
dist/manifest.json
@@ -3,7 +3,7 @@
3
4
"name": "ChromeKeePass",
5
"description": "Chrome extension for automatically entering credentials from KeePass/KeeWeb",
6
- "version": "1.4.4",
+ "version": "1.4.6",
7
8
"commands": {
9
"redetect_fields": {
@@ -51,7 +51,6 @@
51
"permissions": [
52
"storage",
53
"<all_urls>",
54
- "webNavigation",
55
"contextMenus",
56
"webRequest",
57
"webRequestBlocking"
src/classes/KeePassHTTP.ts
@@ -214,6 +214,7 @@ export class KeePassHTTP
214
215
const request: RequestInit = {
216
method: 'POST',
217
+ headers: {'Content-Type': 'application/json'},
218
body: JSON.stringify(body),
219
};
220
0 commit comments