Skip to content

Instantly share code, notes, and snippets.

@bbrewer97202
Created November 8, 2013 16:35
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 bbrewer97202/7373750 to your computer and use it in GitHub Desktop.
Save bbrewer97202/7373750 to your computer and use it in GitHub Desktop.
Open a browser tab within a chrome extension using JavaScript
chrome.browserAction.onClicked.addListener(function (tab) {
chrome.tabs.create({
url: "index.html"
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment