blob: d5966cec5b69301079cfe23ecb3ed3a7b3cf7554 [file] [log] [blame]
chrome.runtime.onMessage.addListener((msg, sender, sendResponse) => {
if (msg.text === 'title') {
sendResponse(document.title);
}
});