Skip to content

Instantly share code, notes, and snippets.

@hedgerh
Created August 15, 2014 07:57
Show Gist options
  • Select an option

  • Save hedgerh/926ec94401f1123a5348 to your computer and use it in GitHub Desktop.

Select an option

Save hedgerh/926ec94401f1123a5348 to your computer and use it in GitHub Desktop.
chrome.tabs.onUpdated.addListener(function(tabId, details, tab) {
if (details.status === 'loading' && details.url === 'https://soundcloud.com/stream'){
execute = true;
}
if (tab.url === "https://soundcloud.com/stream" && tab.status === "complete" && execute === true) {
execute = false;
chrome.tabs.executeScript(tabId, {
file: "js/scripts/streamContent.js"
}, function (res) {console.log(res);});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment