Skip to content

Instantly share code, notes, and snippets.

@norio-nomura
Last active December 29, 2015 07:59
Show Gist options
  • Save norio-nomura/7640153 to your computer and use it in GitHub Desktop.
Save norio-nomura/7640153 to your computer and use it in GitHub Desktop.
EasySIMBL-1.6 compatible Info.plist for ColorfulSidebar.bundle.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>ColorfulSidebar</string>
<key>CFBundleIdentifier</key>
<string>jp.cvz.ColorfulSidebar</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>ColorfulSidebar</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>111</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2012, cvz.</string>
<key>SIMBLTargetApplications</key>
<array>
<dict>
<key>BundleIdentifier</key>
<string>com.apple.appkit.xpc.openAndSavePanelService</string>
</dict>
<dict>
<key>BundleIdentifier</key>
<string>com.apple.security.pboxd</string>
</dict>
<dict>
<key>BundleIdentifier</key>
<string>*</string>
</dict>
</array>
</dict>
</plist>
@norio-nomura
Copy link
Author

EasySIMBL-1.6 supports injecting plugins into PowerBox.
ColorfulSidebar 1.1.1 will works without PowerboxInjector.app by editing Info.plist as add following:

    <dict>
        <key>BundleIdentifier</key>
        <string>com.apple.appkit.xpc.openAndSavePanelService</string>
    </dict>
    <dict>
        <key>BundleIdentifier</key>
        <string>com.apple.security.pboxd</string>
    </dict>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment