Skip to content

Commit 7cdde4e

Browse files
evanyeungfacebook-github-bot
authored andcommitted
Bump the extension version and make new release
Summary: It looks like Chrome deprecated Manifest V2 and requires all extensions to upgrade to Manifest V3. The extension was already updated (64111b8) but needs to be re-released. I followed the directsions in https://www.internalfb.com/wiki/Relay-team/Relay_Devtools/ Reviewed By: tyao1 Differential Revision: D79857289 fbshipit-source-id: a58315a14b408f9846457315afcf4ad358d7579b
1 parent b3893c2 commit 7cdde4e

1 file changed

Lines changed: 24 additions & 8 deletions

File tree

shells/browser/chrome/manifest.json

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"manifest_version": 3,
33
"name": "Relay Developer Tools",
44
"description": "Adds Relay debugging tools to the Chrome Developer Tools.",
5-
"version": "0.9.17",
6-
"version_name": "0.9.17",
5+
"version": "0.9.18",
6+
"version_name": "0.9.18",
77
"minimum_chrome_version": "88",
88
"icons": {
99
"16": "icons/enabled16.png",
@@ -26,20 +26,36 @@
2626
},
2727
"web_accessible_resources": [
2828
{
29-
"resources": ["main.html", "panel.html", "build/*.js"],
30-
"matches": ["<all_urls>"]
29+
"resources": [
30+
"main.html",
31+
"panel.html",
32+
"build/*.js"
33+
],
34+
"matches": [
35+
"<all_urls>"
36+
]
3137
}
3238
],
3339
"background": {
3440
"service_worker": "build/background.js"
3541
},
36-
"permissions": ["webNavigation", "scripting"],
42+
"permissions": [
43+
"webNavigation",
44+
"scripting"
45+
],
3746
"content_scripts": [
3847
{
39-
"matches": ["<all_urls>"],
40-
"js": ["build/injectGlobalHook.js", "build/contentScript.js"],
48+
"matches": [
49+
"<all_urls>"
50+
],
51+
"js": [
52+
"build/injectGlobalHook.js",
53+
"build/contentScript.js"
54+
],
4155
"run_at": "document_start"
4256
}
4357
],
44-
"host_permissions": ["<all_urls>"]
58+
"host_permissions": [
59+
"<all_urls>"
60+
]
4561
}

0 commit comments

Comments
 (0)