tor-browser

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

remoteSettings.json (637B)


      1 [
      2  {
      3    "namespace": "remoteSettings",
      4    "description": "experimental API extension to allow access to the Remote Settings API",
      5    "events": [
      6      {
      7        "name": "onRemoteSettingsUpdate",
      8        "type": "function",
      9        "parameters": [
     10          {
     11            "name": "update",
     12            "type": "object",
     13            "description": "The update payload"
     14          }
     15        ]
     16      }
     17    ],
     18    "functions": [
     19      {
     20        "name": "get",
     21        "type": "function",
     22        "description": "Get the current collection from Remote Settings (if any)",
     23        "parameters": [],
     24        "async": true
     25      }
     26    ]
     27  }
     28 ]