| OLD | NEW |
| 1 <?xml version="1.0" encoding="UTF-8"?> | 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"> | 2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/
PropertyList-1.0.dtd"> |
| 3 <plist version="1.0"> | 3 <plist version="1.0"> |
| 4 <dict> | 4 <dict> |
| 5 <key>CFBundleDevelopmentRegion</key> | 5 <key>CFBundleDevelopmentRegion</key> |
| 6 <string>en</string> | 6 <string>en</string> |
| 7 <key>CFBundleDisplayName</key> | 7 <key>CFBundleDisplayName</key> |
| 8 <string>${EXECUTABLE_NAME}</string> | 8 <string>${EXECUTABLE_NAME}</string> |
| 9 <key>CFBundleDocumentTypes</key> | 9 <key>CFBundleDocumentTypes</key> |
| 10 <array> | 10 <array> |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 <string>Viewer</string> | 225 <string>Viewer</string> |
| 226 </dict> | 226 </dict> |
| 227 <dict> | 227 <dict> |
| 228 <key>CFBundleTypeRole</key> | 228 <key>CFBundleTypeRole</key> |
| 229 <string>Viewer</string> | 229 <string>Viewer</string> |
| 230 <key>LSItemContentTypes</key> | 230 <key>LSItemContentTypes</key> |
| 231 <array> | 231 <array> |
| 232 <string>org.chromium.extension</string> | 232 <string>org.chromium.extension</string> |
| 233 </array> | 233 </array> |
| 234 </dict> | 234 </dict> |
| 235 <dict> |
| 236 <key>CFBundleTypeExtensions</key> |
| 237 <array> |
| 238 <string>pdf</string> |
| 239 </array> |
| 240 <key>CFBundleTypeIconFile</key> |
| 241 <string>document.icns</string> |
| 242 <key>CFBundleTypeMIMETypes</key> |
| 243 <array> |
| 244 <string>application/pdf</string> |
| 245 </array> |
| 246 <key>CFBundleTypeName</key> |
| 247 <string>PDF Document</string> |
| 248 <key>CFBundleTypeRole</key> |
| 249 <string>Viewer</string> |
| 250 </dict> |
| 235 </array> | 251 </array> |
| 236 <key>CFBundleExecutable</key> | 252 <key>CFBundleExecutable</key> |
| 237 <string>${EXECUTABLE_NAME}</string> | 253 <string>${EXECUTABLE_NAME}</string> |
| 238 <key>CFBundleIconFile</key> | 254 <key>CFBundleIconFile</key> |
| 239 <string>app.icns</string> | 255 <string>app.icns</string> |
| 240 <key>CFBundleIdentifier</key> | 256 <key>CFBundleIdentifier</key> |
| 241 <string>${CHROMIUM_BUNDLE_ID}</string> | 257 <string>${CHROMIUM_BUNDLE_ID}</string> |
| 242 <key>CFBundleInfoDictionaryVersion</key> | 258 <key>CFBundleInfoDictionaryVersion</key> |
| 243 <string>6.0</string> | 259 <string>6.0</string> |
| 244 <key>CFBundleName</key> | 260 <key>CFBundleName</key> |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 <dict> | 320 <dict> |
| 305 <key>public.filename-extension</key> | 321 <key>public.filename-extension</key> |
| 306 <array> | 322 <array> |
| 307 <string>crx</string> | 323 <string>crx</string> |
| 308 </array> | 324 </array> |
| 309 </dict> | 325 </dict> |
| 310 </dict> | 326 </dict> |
| 311 </array> | 327 </array> |
| 312 </dict> | 328 </dict> |
| 313 </plist> | 329 </plist> |
| OLD | NEW |