tor-browser

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

permissions-policy-bluetooth.html (278B)


      1 <script>
      2  'use strict';
      3 
      4  navigator.bluetooth.getDevices().then(devices => {
      5    window.parent.postMessage({ type: 'availability-result', enabled: true}, '*');
      6  }, error => {
      7    window.parent.postMessage({ type: 'availability-result', enabled: false }, '*');
      8  });
      9 </script>