aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/platforms/extension.js
blob: d97138207f86d56102804a579697c7635fc44362 (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
  //
  get isExtension () {
    return true
  }

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

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

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

}

module.exports = ExtensionPlatform