blob: f9e1d84b7af007478370426e71566979399f7c32 (
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
27
28
29
30
31
32
33
|
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) {
var info
try {
info = extension.runtime.getPlatformInfo(cb)
} catch (e) {
log.debug(e)
info = undefined
}
return info
}
}
module.exports = ExtensionPlatform
|