Created
May 21, 2015 21:46
-
-
Save lelinhtinh/38b10d47cc604842a173 to your computer and use it in GitHub Desktop.
Mở trang tùy chọn của Chrome extension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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