diff options
author | Christian Segundo | 2023-11-19 16:21:29 +0100 |
---|---|---|
committer | Christian Segundo | 2023-11-19 16:21:29 +0100 |
commit | c6845a798c99e96aa0e2f6daece0684a8ac50681 (patch) | |
tree | a75eec68984bcb7ff8f8c5f048b4806d5cb4ff5a /example-handlers/vim-handler.app/Contents/Info.plist | |
parent | d880836621f0b4b4ca036e62e34d6edc74b61e81 (diff) | |
download | moz-run-this-page-action-c6845a798c99e96aa0e2f6daece0684a8ac50681.tar.gz |
wip
Diffstat (limited to 'example-handlers/vim-handler.app/Contents/Info.plist')
-rw-r--r-- | example-handlers/vim-handler.app/Contents/Info.plist | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/example-handlers/vim-handler.app/Contents/Info.plist b/example-handlers/vim-handler.app/Contents/Info.plist new file mode 100644 index 0000000..af0ad74 --- /dev/null +++ b/example-handlers/vim-handler.app/Contents/Info.plist @@ -0,0 +1,87 @@ +<?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>CFBundleAllowMixedLocalizations</key> + <true/> + <key>CFBundleDevelopmentRegion</key> + <string>en</string> + <key>CFBundleExecutable</key> + <string>applet</string> + <key>CFBundleIconFile</key> + <string>applet</string> + <key>CFBundleIdentifier</key> + <string>com.apple.ScriptEditor.id.vim-handler</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>vim-handler</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleShortVersionString</key> + <string>1.0</string> + <key>CFBundleSignature</key> + <string>aplt</string> + <key>CFBundleURLTypes</key> + <array> + <dict> + <key>CFBundleURLName</key> + <string>HTTPS URL</string> + <key>CFBundleURLSchemes</key> + <array> + <string>https+vim</string> + </array> + </dict> + </array> + <key>LSMinimumSystemVersionByArchitecture</key> + <dict> + <key>x86_64</key> + <string>10.6</string> + </dict> + <key>LSRequiresCarbon</key> + <true/> + <key>NSAppleEventsUsageDescription</key> + <string>This script needs to control other applications to run.</string> + <key>NSAppleMusicUsageDescription</key> + <string>This script needs access to your music to run.</string> + <key>NSCalendarsUsageDescription</key> + <string>This script needs access to your calendars to run.</string> + <key>NSCameraUsageDescription</key> + <string>This script needs access to your camera to run.</string> + <key>NSContactsUsageDescription</key> + <string>This script needs access to your contacts to run.</string> + <key>NSHomeKitUsageDescription</key> + <string>This script needs access to your HomeKit Home to run.</string> + <key>NSMicrophoneUsageDescription</key> + <string>This script needs access to your microphone to run.</string> + <key>NSPhotoLibraryUsageDescription</key> + <string>This script needs access to your photos to run.</string> + <key>NSRemindersUsageDescription</key> + <string>This script needs access to your reminders to run.</string> + <key>NSSiriUsageDescription</key> + <string>This script needs access to Siri to run.</string> + <key>NSSystemAdministrationUsageDescription</key> + <string>This script needs access to administer this system to run.</string> + <key>OSAAppletShowStartupScreen</key> + <false/> + <key>WindowState</key> + <dict> + <key>bundleDividerCollapsed</key> + <true/> + <key>bundlePositionOfDivider</key> + <real>0.0</real> + <key>dividerCollapsed</key> + <false/> + <key>eventLogLevel</key> + <integer>2</integer> + <key>name</key> + <string>ScriptWindowState</string> + <key>positionOfDivider</key> + <real>419</real> + <key>savedFrame</key> + <string>1023 165 700 678 0 0 1920 1055 </string> + <key>selectedTab</key> + <string>description</string> + </dict> +</dict> +</plist> |