summaryrefslogtreecommitdiffstats
path: root/application/basilisk/components/webextensions/ext-c-tabs.js
blob: d5ce9fbf95e024b058f199683fa4ff6c29ab4823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set sts=2 sw=2 et tw=80: */
"use strict";

extensions.registerSchemaAPI("tabs", "addon_child", context => {
  return {
    tabs: {
      connect: function(tabId, connectInfo) {
        let name = "";
        if (connectInfo && connectInfo.name !== null) {
          name = connectInfo.name;
        }
        let recipient = {
          extensionId: context.extension.id,
          tabId,
        };
        if (connectInfo && connectInfo.frameId !== null) {
          recipient.frameId = connectInfo.frameId;
        }
        return context.messenger.connect(context.messageManager, name, recipient);
      },

      sendMessage: function(tabId, message, options, responseCallback) {
        let recipient = {
          extensionId: context.extension.id,
          tabId: tabId,
        };
        if (options && options.frameId !== null) {
          recipient.frameId = options.frameId;
        }
        return context.messenger.sendMessage(context.messageManager, message, recipient, responseCallback);
      },
    },
  };
});