Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lelinhtinh/38b10d47cc604842a173 to your computer and use it in GitHub Desktop.
Save lelinhtinh/38b10d47cc604842a173 to your computer and use it in GitHub Desktop.
Mở trang tùy chọn của Chrome extension
var optionsUrl = chrome.extension.getURL("options.html");
chrome.tabs.query({
url: optionsUrl
}, function (tabs) {
if (tabs.length) {
chrome.tabs.update(tabs[0].id, {
active: true
});
} else {
chrome.tabs.create({
url: optionsUrl
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment