CapProj's picture
Upload 25 files
5dec17e verified
raw
history blame
343 Bytes
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
if (request.action === "fillForm") {
chrome.tabs.query({active: true, currentWindow: true}, (tabs) => {
chrome.tabs.sendMessage(tabs[0].id, {
action: "fillFields",
resumeData: request.data
});
});
}
});