How to resolve warnings if using safari-web-extension-converter?

Command Used:

xcrun safari-web-extension-converter package-content.safariextension  --project-location SafariExtension 

While running the above command, I am getting below warnings. How to resolve these for Safari for iOS 15?

Warnings: The following keys in your manifest.json are not supported by your current version of Safari. If these are critical to your extension, you should review your code to see if you need to make changes to support Safari:

  •         manifest_version
  •         icons
  •         persistent
  •         version
  •         js
  •         content_security_policy
  •         matches
  •         description
  •         <all_urls>
  •         tabs
  •         cookies
  •         activeTab
  •         scripts
  •         storage
  •         applications
  •         browser_action
  •         web_accessible_resources
  •         name
  •         run_at

Got the same issue. Seems basically all keys are included and marked as unsupported.

Hi, I am also getting this, all the keys are marked as unsupported. The tool doesn't work. Any plans on updating this? Also keen to know more about the manifest v3 compatibility project. Thanks.

What is the OS that you are running the command on? What version of the iOS SDK do you have installed?

I believe all of those keys listed are supported for iOS 15, so you should be able to ignore those warnings for now and attempt to build and test your project on iOS.

How to resolve warnings if using safari-web-extension-converter?
 
 
Q