Skip to content

Commit

Permalink
chore: don't update extension if MV3 not supported
Browse files Browse the repository at this point in the history
for Gecko only
  • Loading branch information
WofWca committed Jun 30, 2024
1 parent 7798e23 commit 989112f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,9 +254,13 @@ function injectBrowserSpecificManifestFields(manifest, browser) {
manifest.browser_specific_settings = {
gecko: {
id: "jump-cutter@example.com",
// This is due to this bug
// At least "91.0a1" is required due to this bug:
// https://bugzilla.mozilla.org/show_bug.cgi?id=1517199
strict_min_version: "91.0a1",
// "109" is required due to Manifest V3 migration:
// https://extensionworkshop.com/documentation/publish/distribute-manifest-versions/
// Also there are some issues on versions < "128",
// see comments in `background/main.ts`.
strict_min_version: "109.0",
},
};
}
Expand Down

0 comments on commit 989112f

Please sign in to comment.