tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

nightly.browser.xml (1622B)


      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 <!--
      4     Entitlements to apply to the main browser process executable during
      5     codesigning of production channel builds.
      6 -->
      7 <plist version="1.0">
      8  <dict>
      9    <!-- Allow loading third party libraries to support pkcs11 modules -->
     10    <key>com.apple.security.cs.disable-library-validation</key><true/>
     11 
     12    <!-- Firefox needs to create executable pages with MAP_JIT on aarch64 -->
     13    <key>com.apple.security.cs.allow-jit</key><true/>
     14 
     15    <!-- Firefox needs to access the microphone on sites the user allows -->
     16    <key>com.apple.security.device.audio-input</key><true/>
     17 
     18    <!-- Firefox needs to access the camera on sites the user allows -->
     19    <key>com.apple.security.device.camera</key><true/>
     20 
     21    <!-- Firefox needs to access the location on sites the user allows -->
     22    <key>com.apple.security.personal-information.location</key><true/>
     23 
     24    <!-- For SmartCardServices(7) -->
     25    <key>com.apple.security.smartcard</key><true/>
     26 
     27    <!-- Required for com.apple.developer.web-browser.public-key-credential -->
     28    <key>com.apple.application-identifier</key>
     29    <string>43AQ936H96.org.mozilla.nightly</string>
     30 
     31    <!-- For platform passkey (webauthn) support -->
     32    <key>com.apple.developer.web-browser.public-key-credential</key><true/>
     33 
     34    <key>com.apple.security.application-groups</key>
     35    <array>
     36      <!-- Browser profile container for all channels -->
     37      <string>43AQ936H96.org.mozilla.firefox.browserprofiles</string>
     38    </array>
     39  </dict>
     40 </plist>