aboutsummaryrefslogblamecommitdiffstats
path: root/app/scripts/platforms/extension.js
blob: f5cc255d1cda1a6b109fa63840d64e66ce8ff303 (plain) (tree)
1
2
3
4
5
6
7






                                          







                                  



                                                  




                                                              
                        
         


                                                       
                 
           
     
   


                                  
const extension = require('extensionizer')

class ExtensionPlatform {

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

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

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

  openExtensionInBrowser () {
    const extensionURL = extension.runtime.getURL('home.html')
    this.openWindow({ url: extensionURL })
  }

  getPlatformInfo (cb) {
    try {
      extension.runtime.getPlatformInfo((platform) => {
        cb(null, platform)
      })
    } catch (e) {
      cb(e)
    }
  }
}

module.exports = ExtensionPlatform