aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/platforms/extension.js
blob: 5ed2fdc4f1f7e927e0e92d2a58ec7356f6c7dbe2 (plain) (blame)
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
const extension = require('extensionizer')

class ExtensionPlatform {

  //
  // Public
  //
  reload () {
    extension.runtime.reload()
  }

  openWindow ({ url }) {
    extension.tabs.create({ url })
  }

  getVersion () {
    return extension.runtime.getManifest().version
  }

  getPlatformInfo (cb) {
    return extension.runtime.getPlatformInfo(cb)
  }

}

module.exports = ExtensionPlatform