0

Currently in my NSExtensionActivationRule, is only this value:

NSExtensionActivationSupportsWebURLWithMaxCount = 1

But my share extension is also visible in Chrome, is there a way to restrict share extension to be visible only in Safari ?

rmaddy
  • 314,917
  • 42
  • 532
  • 579
David
  • 857
  • 1
  • 11
  • 25

1 Answers1

1

Ok, so the answer is :

You need to replace

NSExtensionActivationSupportsWebURLWithMaxCount

with

NSExtensionActivationSupportsWebPageWithMaxCount

After that, your extension will be visible only in Safari.

David
  • 857
  • 1
  • 11
  • 25