tor-browser

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

components.conf (1025B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 Classes = [
      6     # Remote Agent
      7     {
      8         "cid": "{8f685a9d-8181-46d6-a71d-869289099c6d}",
      9         "contract_ids": ["@mozilla.org/remote/agent;1"],
     10         "categories": {
     11             "command-line-handler": "m-remote",
     12             "profile-after-change": "RemoteAgent",
     13         },
     14         'esModule': "chrome://remote/content/components/RemoteAgent.sys.mjs",
     15         "constructor": "RemoteAgentFactory",
     16     },
     17 
     18     # Marionette
     19     {
     20         "cid": "{786a1369-dca5-4adc-8486-33d23c88010a}",
     21         "contract_ids": ["@mozilla.org/remote/marionette;1"],
     22         "categories": {
     23             "command-line-handler": "m-marionette",
     24             "profile-after-change": "Marionette",
     25         },
     26         'esModule': "chrome://remote/content/components/Marionette.sys.mjs",
     27         "constructor": "MarionetteFactory",
     28     },
     29 ]