aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/platforms/extension.js
blob: cbb35768eff58198b51f3206d7d6711e744f89d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const extension = require('extensionizer')

class ExtensionPlatform {

  //
  // Public
  //

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

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

}

module.exports = ExtensionPlatform