mirror of
https://github.com/X1a0He/Adobe-Downloader.git
synced 2025-11-25 03:14:57 +08:00
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
|
|
<?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>com.apple.security.network.client</key>
|
||
|
|
<true/>
|
||
|
|
|
||
|
|
<!-- 允许访问本地网络 -->
|
||
|
|
<key>com.apple.security.network.server</key>
|
||
|
|
<true/>
|
||
|
|
|
||
|
|
<!-- 添加以下键值对 -->
|
||
|
|
<key>NSAppTransportSecurity</key>
|
||
|
|
<dict>
|
||
|
|
<key>NSAllowsArbitraryLoads</key>
|
||
|
|
<true/>
|
||
|
|
</dict>
|
||
|
|
|
||
|
|
<!-- 添加以下权限声明 -->
|
||
|
|
<key>NSDownloadsFolderUsageDescription</key>
|
||
|
|
<string>需要访问下载文件夹来保存Adobe安装文件</string>
|
||
|
|
|
||
|
|
<!-- 添加以下权限 -->
|
||
|
|
<key>com.apple.security.app-sandbox</key>
|
||
|
|
<true/>
|
||
|
|
|
||
|
|
<key>com.apple.security.files.downloads.read-write</key>
|
||
|
|
<true/>
|
||
|
|
|
||
|
|
<key>com.apple.security.files.user-selected.read-write</key>
|
||
|
|
<true/>
|
||
|
|
|
||
|
|
<key>com.apple.security.temporary-exception.files.home-relative-path.read-write</key>
|
||
|
|
<array>
|
||
|
|
<string>/Downloads/</string>
|
||
|
|
</array>
|
||
|
|
</dict>
|
||
|
|
</plist>
|