Skip to content

Instantly share code, notes, and snippets.

@zachhardesty7
Last active November 24, 2017 20:54
Show Gist options
  • Save zachhardesty7/f9b911c39eb6435989d4a0361cfd50bd to your computer and use it in GitHub Desktop.
Save zachhardesty7/f9b911c39eb6435989d4a0361cfd50bd to your computer and use it in GitHub Desktop.
content -> background
function passToBackground() {
// {replace with code to collect data}
chrome.runtime.sendMessage({
type: "fromContent",
data: "data"
});
}
document.querySelector('.button').addEventListener('click', passToBackground);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment