Skip to content

Instantly share code, notes, and snippets.

@KPChakravarthy
Last active June 20, 2020 17:13
Show Gist options
  • Save KPChakravarthy/6d7377fb4e4b32078d02634414324066 to your computer and use it in GitHub Desktop.
Save KPChakravarthy/6d7377fb4e4b32078d02634414324066 to your computer and use it in GitHub Desktop.
chrome.tabs.create(
{
url: url,
},
(tab) => {
chrome.tabs.executeScript(
tab.id,
{
code: `var blobURL = "${blobURL}"; console.log("1:::")`,
},
function () {
chrome.tabs.executeScript(tab.id, {
code: `(${sendFile})();`,
});
}
);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment