Skip to content

Commit b3893c2

Browse files
tyao1facebook-github-bot
authored andcommitted
Update minimum chrome version for publishing to the Chrome store
Summary: Our chrome extension has been disabled in the store because it was on Manifest V2. I'm trying to upload the new version that supports Manifest V3, but the Chrome Store has a minimum chrome version requirment {F1974876476} Reviewed By: lynnshaoyu Differential Revision: D68991105 fbshipit-source-id: f53031f5a21e8a271b169583711da01a8ed6eb9b
1 parent 64111b8 commit b3893c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

shells/browser/chrome/manifest.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
"description": "Adds Relay debugging tools to the Chrome Developer Tools.",
55
"version": "0.9.17",
66
"version_name": "0.9.17",
7-
"update_url": "https://www.internalfb.com/intern/browser_extensions/chrome/update.xml",
8-
"minimum_chrome_version": "78",
7+
"minimum_chrome_version": "88",
98
"icons": {
109
"16": "icons/enabled16.png",
1110
"32": "icons/enabled32.png",
@@ -34,12 +33,13 @@
3433
"background": {
3534
"service_worker": "build/background.js"
3635
},
37-
"permissions": ["webNavigation", "scripting", "tabs"],
36+
"permissions": ["webNavigation", "scripting"],
3837
"content_scripts": [
3938
{
4039
"matches": ["<all_urls>"],
4140
"js": ["build/injectGlobalHook.js", "build/contentScript.js"],
4241
"run_at": "document_start"
4342
}
44-
]
43+
],
44+
"host_permissions": ["<all_urls>"]
4545
}

0 commit comments

Comments
 (0)