Skip to content

Commit 192ea65

Browse files
committed
fix(manifest): activate Web eID backwards-compatible mode in all frames, including iframes
WE2-624 Signed-off-by: Mart Somermaa <[email protected]>
1 parent 308b46c commit 192ea65

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-eid-webextension",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "",
55
"main": "src/index.js",
66
"scripts": {

static/chrome/manifest.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
],
1414
"matches": [
1515
"*://*/*"
16-
]
16+
],
17+
"all_frames": true
1718
}
1819
],
1920
"browser_action": {

static/firefox/manifest.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
],
1919
"matches": [
2020
"*://*/*"
21-
]
21+
],
22+
"all_frames": true
2223
}
2324
],
2425
"browser_action": {

static/safari/manifest.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
],
1515
"matches": [
1616
"*://*/*"
17-
]
17+
],
18+
"all_frames": true
1819
}
1920
],
2021
"background": {

0 commit comments

Comments
 (0)