Skip to content

Commit 6df643f

Browse files
committed
Update manifest.json
1 parent 92f13ed commit 6df643f

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

extension/chrome/manifest.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"name": "Redux DevTools",
44
"description": "Redux DevTools for debugging application's state changes.",
55
"homepage_url": "https://github.com/reduxjs/redux-devtools",
6-
"manifest_version": 2,
7-
"page_action": {
6+
"manifest_version": 3,
7+
"action": {
88
"default_icon": "img/logo/gray.png",
99
"default_title": "Redux DevTools",
1010
"default_popup": "window.html#popup"
@@ -34,12 +34,10 @@
3434
"128": "img/logo/128x128.png"
3535
},
3636
"options_ui": {
37-
"page": "options.html",
38-
"chrome_style": true
37+
"page": "options.html"
3938
},
4039
"background": {
41-
"scripts": ["background.bundle.js"],
42-
"persistent": false
40+
"service_worker": "background.bundle.js"
4341
},
4442
"content_scripts": [
4543
{
@@ -51,19 +49,21 @@
5149
}
5250
],
5351
"devtools_page": "devtools.html",
54-
"web_accessible_resources": ["page.bundle.js"],
52+
"web_accessible_resources": [
53+
{
54+
"resources": ["page.bundle.js"],
55+
"matches": ["<all_urls>"],
56+
"extension_ids": []
57+
}
58+
],
5559
"externally_connectable": {
5660
"ids": ["*"]
5761
},
58-
"permissions": [
59-
"notifications",
60-
"contextMenus",
61-
"storage",
62-
"file:///*",
63-
"http://*/*",
64-
"https://*/*"
65-
],
66-
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;",
62+
"permissions": ["notifications", "contextMenus", "storage"],
63+
"host_permissions": ["file:///*", "http://*/*", "https://*/*"],
64+
"content_security_policy": {
65+
"extension_pages": "script-src 'self'; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;"
66+
},
6767
"update_url": "https://clients2.google.com/service/update2/crx",
6868
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsdJEPwY92xUACA9CcDBDBmbdbp8Ap3cKQ0DJTUuVQvqb4FQAv8RtKY3iUjGvdwuAcSJQIZwHXcP2aNDH3TiFik/NhRK2GRW8X3OZyTdkuDueABGP2KEX8q1WQDgjX/rPIinGYztUrvoICw/UerMPwNW62jwGoVU3YhAGf+15CgX2Y6a4tppnf/+1mPedKPidh0RsM+aJY98rX+r1SPAHPcGzMjocLkqcT75DZBXer8VQN14tOOzRCd6T6oy7qm7eWru8lJwcY66qMQvhk0osqEod2G3nA7aTWpmqPFS66VEiecP9PgZlp8gQdgZ3dFhA62exydlD55JuRhiMIR63yQIDAQAB"
6969
}

0 commit comments

Comments
 (0)