mirror of
https://github.com/electron/electron.git
synced 2026-02-10 23:25:30 -05:00
* feat: add chrome.runtime.getManifest * Add test for chrome.runtime.getManifest * Use IPC utils for getManifest internals
16 lines
321 B
JavaScript
16 lines
321 B
JavaScript
/* global chrome */
|
|
|
|
const testMap = {
|
|
getManifest () {
|
|
const manifest = chrome.runtime.getManifest()
|
|
console.log(JSON.stringify(manifest))
|
|
}
|
|
}
|
|
|
|
const dispatchTest = (event) => {
|
|
const testName = event.data
|
|
const test = testMap[testName]
|
|
test()
|
|
}
|
|
window.addEventListener('message', dispatchTest, false)
|