Google Chromeに表示される共有拡張機能に問題があります。これはSafariでよく表示され動作しますが、Chromeでは表示されません。私は以下のアクティベーションルールを使用していますが、他のアプリ(画像、PDF、共有テキスト)でも動作していますが、クロムからは抜けています。私のInfo.plistからシェアエクステンションGoogle Chrome - 動作していません
:
<dict>
<key>NSExtensionAttributes</key>
<dict>
<key>NSExtensionActivationRule</key>
<string>
SUBQUERY (
extensionItems,
$extensionItem,
SUBQUERY (
$extensionItem.attachments,
$attachment,
ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.url" ||
ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.plain-text" ||
ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.text" ||
ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.jpeg" ||
ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.png" ||
ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.image" ||
ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "com.adobe.pdf"
)[email protected] == 1
)[email protected] == 1
</string>
<key>NSExtensionJavaScriptPreprocessingFile</key>
<string>GetURL</string>
</dict>
<key>NSExtensionPointIdentifier</key>
<string>com.apple.share-services</string>
<key>NSExtensionMainStoryboard</key>
<string>MainInterface</string>
</dict>
任意のアイデア?
私はたくさんお世話になった! – oronbz
うわー!どうもありがとうございます。 – Deleplace
こんにちは私はまた、1PasswordやDashlaneアプリのようなネイティブアプリでautofillパスワードのためのcromeの共有拡張を追加したいと思っています どうすればこの作業を開始できますか? ヘルプが必要です。 – Anita