Skip to content

Commit d6309af

Browse files
committed
feat: Upgrade manifest from v2 to v3
1 parent 459fd52 commit d6309af

File tree

3 files changed

+11
-31
lines changed

3 files changed

+11
-31
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"react-dom": "^16.14.0",
5050
"react-flex-panel": "^1.0.0",
5151
"react-fontawesome": "^1.7.1",
52-
"react-inspector": "^5.1.0",
52+
"react-inspector": "^6.0.2",
5353
"react-virtualized-auto-sizer": "1.0.6",
5454
"react-window": "^1.8.6",
5555
"rsocket-core": "^0.0.27",

src/manifest.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
{
2-
"manifest_version": 2,
2+
"manifest_version": 3,
33
"name": "RSocket Frame Inspector",
44
"permissions": [
55
"debugger"
66
],
77
"devtools_page": "devtools.html",
8-
"browser_action": {
8+
"action": {
99
"default_icon": "icon-128.png"
1010
},
1111
"icons": {
1212
"128": "icon-128.png"
1313
},
14-
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
14+
"content_security_policy": {
15+
"extension_pages": "script-src 'self'; object-src 'self'"
16+
}
1517
}

yarn.lock

+5-27
Original file line numberDiff line numberDiff line change
@@ -1572,14 +1572,6 @@ is-core-module@^2.13.0, is-core-module@^2.5.0:
15721572
dependencies:
15731573
hasown "^2.0.0"
15741574

1575-
is-dom@^1.0.0:
1576-
version "1.1.0"
1577-
resolved "https://registry.yarnpkg.com/is-dom/-/is-dom-1.1.0.tgz#af1fced292742443bb59ca3f76ab5e80907b4e8a"
1578-
integrity sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==
1579-
dependencies:
1580-
is-object "^1.0.1"
1581-
is-window "^1.0.2"
1582-
15831575
is-extglob@^2.1.1:
15841576
version "2.1.1"
15851577
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
@@ -1607,11 +1599,6 @@ is-number@^7.0.0:
16071599
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
16081600
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
16091601

1610-
is-object@^1.0.1:
1611-
version "1.0.2"
1612-
resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.2.tgz#a56552e1c665c9e950b4a025461da87e72f86fcf"
1613-
integrity sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==
1614-
16151602
is-path-cwd@^2.0.0:
16161603
version "2.2.0"
16171604
resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb"
@@ -1643,11 +1630,6 @@ is-plain-object@^2.0.4:
16431630
dependencies:
16441631
isobject "^3.0.1"
16451632

1646-
is-window@^1.0.2:
1647-
version "1.0.2"
1648-
resolved "https://registry.yarnpkg.com/is-window/-/is-window-1.0.2.tgz#2c896ca53db97de45d3c33133a65d8c9f563480d"
1649-
integrity sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==
1650-
16511633
isarray@~1.0.0:
16521634
version "1.0.0"
16531635
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
@@ -2340,7 +2322,7 @@ promise-retry@^2.0.1:
23402322
err-code "^2.0.2"
23412323
retry "^0.12.0"
23422324

2343-
prop-types@^15.0.0, prop-types@^15.5.6, prop-types@^15.6.2:
2325+
prop-types@^15.5.6, prop-types@^15.6.2:
23442326
version "15.8.1"
23452327
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
23462328
integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
@@ -2393,14 +2375,10 @@ react-fontawesome@^1.7.1:
23932375
dependencies:
23942376
prop-types "^15.5.6"
23952377

2396-
react-inspector@^5.1.0:
2397-
version "5.1.1"
2398-
resolved "https://registry.yarnpkg.com/react-inspector/-/react-inspector-5.1.1.tgz#58476c78fde05d5055646ed8ec02030af42953c8"
2399-
integrity sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==
2400-
dependencies:
2401-
"@babel/runtime" "^7.0.0"
2402-
is-dom "^1.0.0"
2403-
prop-types "^15.0.0"
2378+
react-inspector@^6.0.2:
2379+
version "6.0.2"
2380+
resolved "https://registry.yarnpkg.com/react-inspector/-/react-inspector-6.0.2.tgz#aa3028803550cb6dbd7344816d5c80bf39d07e9d"
2381+
integrity sha512-x+b7LxhmHXjHoU/VrFAzw5iutsILRoYyDq97EDYdFpPLcvqtEzk4ZSZSQjnFPbr5T57tLXnHcqFYoN1pI6u8uQ==
24042382

24052383
react-is@^16.13.1:
24062384
version "16.13.1"

0 commit comments

Comments
 (0)