28 lines
773 B
JavaScript
28 lines
773 B
JavaScript
/* global chrome */
|
|
|
|
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
|
|
sendResponse(message)
|
|
})
|
|
|
|
const testMap = {
|
|
getManifest () {
|
|
const manifest = chrome.runtime.getManifest()
|
|
console.log(JSON.stringify(manifest))
|
|
},
|
|
sendMessage (message) {
|
|
chrome.runtime.sendMessage({ method: 'sendMessage', args: [message] }, response => {
|
|
console.log(JSON.stringify(response))
|
|
})
|
|
},
|
|
executeScript (code) {
|
|
chrome.runtime.sendMessage({ method: 'executeScript', args: [code] }, response => {
|
|
console.log(JSON.stringify(response))
|
|
})
|
|
}
|
|
}
|
|
|
|
const dispatchTest = (event) => {
|
|
const { method, args = [] } = JSON.parse(event.data)
|
|
testMap[method](...args)
|
|
}
|
|
window.addEventListener('message', dispatchTest, false)
|