Bump version numbers

This commit is contained in:
Nathan Bierema 2024-08-17 15:15:20 -04:00
parent 8d5a8075c4
commit ce14b6fd90
3 changed files with 24 additions and 28 deletions

View File

@ -1,5 +1,5 @@
{ {
"version": "3.1.10", "version": "3.2.0",
"name": "Redux DevTools", "name": "Redux DevTools",
"description": "Redux DevTools for debugging application's state changes.", "description": "Redux DevTools for debugging application's state changes.",
"homepage_url": "https://github.com/reduxjs/redux-devtools", "homepage_url": "https://github.com/reduxjs/redux-devtools",

View File

@ -1,28 +1,22 @@
{ {
"version": "3.1.10", "version": "3.2.0",
"name": "Redux DevTools", "name": "Redux DevTools",
"description": "Redux DevTools for debugging application's state changes.", "description": "Redux DevTools for debugging application's state changes.",
"homepage_url": "https://github.com/reduxjs/redux-devtools", "homepage_url": "https://github.com/reduxjs/redux-devtools",
"manifest_version": 2, "manifest_version": 3,
"page_action": { "action": {
"default_icon": "img/logo/gray.png", "default_icon": "img/logo/gray.png",
"default_title": "Redux DevTools", "default_title": "Redux DevTools",
"default_popup": "window.html#popup" "default_popup": "devpanel.html#popup"
}, },
"commands": { "commands": {
"devtools-left": { "devtools-window": {
"description": "DevTools window to left" "description": "DevTools window"
},
"devtools-right": {
"description": "DevTools window to right"
},
"devtools-bottom": {
"description": "DevTools window to bottom"
}, },
"devtools-remote": { "devtools-remote": {
"description": "Remote DevTools" "description": "Remote DevTools"
}, },
"_execute_page_action": { "_execute_action": {
"suggested_key": { "suggested_key": {
"default": "Ctrl+Shift+E" "default": "Ctrl+Shift+E"
} }
@ -38,30 +32,32 @@
"chrome_style": true "chrome_style": true
}, },
"background": { "background": {
"scripts": ["background.bundle.js"], "service_worker": "background.bundle.js"
"persistent": false
}, },
"content_scripts": [ "content_scripts": [
{ {
"matches": ["<all_urls>"], "matches": ["<all_urls>"],
"exclude_globs": ["https://www.google*"], "exclude_globs": ["https://www.google*"],
"js": ["content.bundle.js", "pagewrap.bundle.js"], "js": ["content.bundle.js"],
"run_at": "document_start", "run_at": "document_start",
"all_frames": true "all_frames": true
},
{
"matches": ["<all_urls>"],
"exclude_globs": ["https://www.google*"],
"js": ["page.bundle.js"],
"run_at": "document_start",
"all_frames": true,
"world": "MAIN"
} }
], ],
"devtools_page": "devtools.html", "devtools_page": "devtools.html",
"web_accessible_resources": ["page.bundle.js"],
"externally_connectable": { "externally_connectable": {
"ids": ["*"] "ids": ["*"]
}, },
"permissions": [ "permissions": ["notifications", "contextMenus", "storage"],
"notifications", "host_permissions": ["file:///*", "http://*/*", "https://*/*"],
"contextMenus", "content_security_policy": {
"storage", "extension_pages": "script-src 'self'; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;"
"file:///*", }
"http://*/*",
"https://*/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;"
} }

View File

@ -1,5 +1,5 @@
{ {
"version": "3.1.10", "version": "3.2.0",
"name": "Redux DevTools", "name": "Redux DevTools",
"manifest_version": 3, "manifest_version": 3,
"description": "Redux Developer Tools for debugging application state changes.", "description": "Redux Developer Tools for debugging application state changes.",