Is it possible to define a file extension as belonging to a Glyphs plugin? I tried adding this to the Info.plist, but it doesn’t seem to have an effect:
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>glyphsToolBox</string>
</array>
<key>CFBundleTypeName</key>
<string>Glyphs ToolBox</string>
<key>CFBundleTypeOSTypes</key>
<array>
<string>glyphsToolBox</string>
</array>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSItemContentTypes</key>
<array>
<string>de.kutilek.glyphsToolBox</string>
</array>
<key>LSTypeIsPackage</key>
<false/>
</dict>
</array>
<key>CFBundleExecutable</key>
<string>plugin</string>
<key>CFBundleIdentifier</key>
<string>de.kutilek.GlyphsToolBox</string>
<!-- ... -->