You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Are you could generated an improvedtube_edge.zip with releases as we do for Safari already. We also looking forward to publish some store versions automatically one day)
I looked into how the shared manifest.json is processed for each browser/store package, because I wanted to better understand the release flow.
My current understanding is:
The source manifest.json currently has both background.service_worker and background.scripts.
build/build.py removes service_worker for Firefox builds, but the Chromium build path does not seem to remove scripts.
The Chrome and Edge store packages I checked already have scripts removed and contain only service_worker.
Checked package versions: Chrome 4.2081, Edge 4.2028, Firefox 4.2028.
If the intended solution is to update build/build.py, I think this would probably go in the existing chromium() build path so it applies to Chromium-based packages such as Chrome and Edge. Since the published Chrome/Edge store manifests already have background.scripts removed, I mainly want to make sure this would not conflict with any existing release/store-submission step.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Remove deprecated
background.scriptsfrom the Manifest V3 configuration.Changes
background.scriptsfrommanifest.jsonbackground.service_workerunchangedReason
Manifest V3 does not support
background.scripts.The extension showed the warning:
background.scripts requires manifest version of 2 or lowerduring local testing in Microsoft Edge.
Testing