Xcode7.3がリリースされ、以前まで動いていたプラグインが動かなくなりました。
以下解決方法になります。
手順
##DVTPlugInCompatibilityUUIDを取得
1.ターミナルで以下を実行
defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID
2.出てきたUUIDを追加
find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist | xargs -IFILE defaults write FILE DVTPlugInCompatibilityUUIDs -array-add "1.で取得したUUID"
3.Xcodeを再起動してLoadBundleを選択
これで、以前まで使えていたプラグインが動作するようになります。