Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created August 13, 2017 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelovstanton/fb7bb63150e7a5ab58a495b59fede921 to your computer and use it in GitHub Desktop.
Save angelovstanton/fb7bb63150e7a5ab58a495b59fede921 to your computer and use it in GitHub Desktop.
chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse) {
if (request.greeting == "screenshot")
{
chrome.tabs.query(
{ currentWindow: true, active: true },
function (tabArray) {
chrome.tabs.executeScript(tabArray[0].id, { file: 'html2canvas.js'});
}
);
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment