Skip to content

Commit 2a93de4

Browse files
github-actions[bot]Methuselah96
andauthoredAug 17, 2024··
Version Packages (#1720)
* Version Packages * Bump version numbers --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>

File tree

6 files changed

+31
-34
lines changed

6 files changed

+31
-34
lines changed
 

‎.changeset/shaggy-taxis-cross.md

-5
This file was deleted.

‎extension/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# remotedev-redux-devtools-extension
22

3+
## 3.2.0
4+
5+
### Minor Changes
6+
7+
- 83b2c19: Upgrade to Manifest V3
8+
39
## 3.1.11
410

511
### Patch Changes

‎extension/chrome/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.1.10",
2+
"version": "3.2.0",
33
"name": "Redux DevTools",
44
"description": "Redux DevTools for debugging application's state changes.",
55
"homepage_url": "https://github.com/reduxjs/redux-devtools",

‎extension/edge/manifest.json

+22-26
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,22 @@
11
{
2-
"version": "3.1.10",
2+
"version": "3.2.0",
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",
10-
"default_popup": "window.html#popup"
10+
"default_popup": "devpanel.html#popup"
1111
},
1212
"commands": {
13-
"devtools-left": {
14-
"description": "DevTools window to left"
15-
},
16-
"devtools-right": {
17-
"description": "DevTools window to right"
18-
},
19-
"devtools-bottom": {
20-
"description": "DevTools window to bottom"
13+
"devtools-window": {
14+
"description": "DevTools window"
2115
},
2216
"devtools-remote": {
2317
"description": "Remote DevTools"
2418
},
25-
"_execute_page_action": {
19+
"_execute_action": {
2620
"suggested_key": {
2721
"default": "Ctrl+Shift+E"
2822
}
@@ -38,30 +32,32 @@
3832
"chrome_style": true
3933
},
4034
"background": {
41-
"scripts": ["background.bundle.js"],
42-
"persistent": false
35+
"service_worker": "background.bundle.js"
4336
},
4437
"content_scripts": [
4538
{
4639
"matches": ["<all_urls>"],
4740
"exclude_globs": ["https://www.google*"],
48-
"js": ["content.bundle.js", "pagewrap.bundle.js"],
41+
"js": ["content.bundle.js"],
4942
"run_at": "document_start",
5043
"all_frames": true
44+
},
45+
{
46+
"matches": ["<all_urls>"],
47+
"exclude_globs": ["https://www.google*"],
48+
"js": ["page.bundle.js"],
49+
"run_at": "document_start",
50+
"all_frames": true,
51+
"world": "MAIN"
5152
}
5253
],
5354
"devtools_page": "devtools.html",
54-
"web_accessible_resources": ["page.bundle.js"],
5555
"externally_connectable": {
5656
"ids": ["*"]
5757
},
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:;"
58+
"permissions": ["notifications", "contextMenus", "storage"],
59+
"host_permissions": ["file:///*", "http://*/*", "https://*/*"],
60+
"content_security_policy": {
61+
"extension_pages": "script-src 'self'; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;"
62+
}
6763
}

‎extension/firefox/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.1.10",
2+
"version": "3.2.0",
33
"name": "Redux DevTools",
44
"manifest_version": 3,
55
"description": "Redux Developer Tools for debugging application state changes.",

‎extension/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "remotedev-redux-devtools-extension",
4-
"version": "3.1.11",
4+
"version": "3.2.0",
55
"description": "Redux Developer Tools for debugging application state changes.",
66
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/extension",
77
"license": "MIT",

0 commit comments

Comments
 (0)
Please sign in to comment.