1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="1.0">
4<dict>
5	<key>CFBundleGetInfoString</key>
6	<string>${BUNDLE_VERSION}, Copyright 2003-2014 Apple Inc.</string>
7	<key>CFBundleDevelopmentRegion</key>
8	<string>English</string>
9	<key>CFBundleExecutable</key>
10	<string>${EXECUTABLE_NAME}</string>
11	<key>CFBundleIdentifier</key>
12	<string>${PRODUCT_NAME}</string>
13	<key>CFBundleInfoDictionaryVersion</key>
14	<string>6.0</string>
15	<key>CFBundleName</key>
16	<string>${PRODUCT_NAME}</string>
17	<key>CFBundlePackageType</key>
18	<string>XPC!</string>
19	<key>CFBundleShortVersionString</key>
20	<string>${SHORT_VERSION_STRING}</string>
21	<key>CFBundleSignature</key>
22	<string>????</string>
23	<key>CFBundleVersion</key>
24	<string>${BUNDLE_VERSION}</string>
25	<key>LSFileQuarantineEnabled</key>
26	<true/>
27	<key>NSPrincipalClass</key>
28	<string>NSApplication</string>
29	<key>WebKitEntryPoint</key>
30	<string>PluginServiceInitializer</string>
31	<key>LSUIElement</key>
32	<true/>
33	<key>NSSupportsAutomaticGraphicsSwitching</key>
34	<true/>
35	<key>NSSupportsAppNap</key>
36	<true/>
37	<key>XPCService</key>
38	<dict>
39		<key>ServiceType</key>
40		<string>Application</string>
41		<key>RunLoopType</key>
42		<string>_NSApplicationMain</string>
43		<key>JoinExistingSession</key>
44		<true/>
45		<key>_MultipleInstances</key>
46		<true/>
47		<key>EnvironmentVariables</key>
48		<dict>
49			<key>DYLD_INSERT_LIBRARIES</key>
50			<string>$(WEBKIT2_FRAMEWORKS_DIR)/WebKit2.framework/PluginProcess.app/Contents/MacOS/PluginProcessShim.dylib</string>
51		</dict>
52	</dict>
53</dict>
54</plist>
55