Skip to content

Instantly share code, notes, and snippets.

@ostearn
Created May 6, 2017 17:36
Show Gist options
  • Save ostearn/058888fdd448c0f1d2202259e8f32948 to your computer and use it in GitHub Desktop.
Save ostearn/058888fdd448c0f1d2202259e8f32948 to your computer and use it in GitHub Desktop.
// listen for our browerAction to be clicked
chrome.browserAction.onClicked.addListener(function (tab) {
// for the current tab, inject the "inject.js" file & execute it
chrome.tabs.executeScript(tab.ib, {
file: 'jquery/jquery.min.js'
});
chrome.tabs.executeScript(tab.ib, {
file: 'inject.js'
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment