Skip to content

Commit

Permalink
Update minimum chrome version for publishing to the Chrome store
Browse files Browse the repository at this point in the history
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
  • Loading branch information
tyao1 authored and facebook-github-bot committed Feb 7, 2025
1 parent 64111b8 commit b3893c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions shells/browser/chrome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"description": "Adds Relay debugging tools to the Chrome Developer Tools.",
"version": "0.9.17",
"version_name": "0.9.17",
"update_url": "https://www.internalfb.com/intern/browser_extensions/chrome/update.xml",
"minimum_chrome_version": "78",
"minimum_chrome_version": "88",
"icons": {
"16": "icons/enabled16.png",
"32": "icons/enabled32.png",
Expand Down Expand Up @@ -34,12 +33,13 @@
"background": {
"service_worker": "build/background.js"
},
"permissions": ["webNavigation", "scripting", "tabs"],
"permissions": ["webNavigation", "scripting"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["build/injectGlobalHook.js", "build/contentScript.js"],
"run_at": "document_start"
}
]
],
"host_permissions": ["<all_urls>"]
}

0 comments on commit b3893c2

Please sign in to comment.