electron/spec-main/fixtures/extensions/chrome-api/main.js

48 lines
1.3 KiB
JavaScript
Raw Normal View History

/* global chrome */
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
2020-03-20 20:28:31 +00:00
sendResponse(message);
});
const testMap = {
connect () {
2020-03-20 20:28:31 +00:00
let success = false;
try {
2020-03-20 20:28:31 +00:00
chrome.runtime.connect(chrome.runtime.id);
chrome.runtime.connect(chrome.runtime.id, { name: 'content-script' });
chrome.runtime.connect({ name: 'content-script' });
success = true;
} finally {
2020-03-20 20:28:31 +00:00
console.log(JSON.stringify(success));
}
},
getManifest () {
2020-03-20 20:28:31 +00:00
const manifest = chrome.runtime.getManifest();
console.log(JSON.stringify(manifest));
},
sendMessage (message) {
chrome.runtime.sendMessage({ method: 'sendMessage', args: [message] }, response => {
2020-03-20 20:28:31 +00:00
console.log(JSON.stringify(response));
});
},
executeScript (code) {
chrome.runtime.sendMessage({ method: 'executeScript', args: [code] }, response => {
2020-03-20 20:28:31 +00:00
console.log(JSON.stringify(response));
});
},
connectTab (name) {
chrome.runtime.onConnect.addListener(port => {
port.onMessage.addListener(message => {
2020-03-20 20:28:31 +00:00
console.log([port.name, message].join());
});
});
chrome.runtime.sendMessage({ method: 'connectTab', args: [name] });
}
2020-03-20 20:28:31 +00:00
};
const dispatchTest = (event) => {
2020-03-20 20:28:31 +00:00
const { method, args = [] } = JSON.parse(event.data);
testMap[method](...args);
};
window.addEventListener('message', dispatchTest, false);