You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
function check_first_install() {
|
|
if (localStorage.getItem('first_install_ran'))
|
|
return;
|
|
|
|
localStorage.setItem('first_install_ran', 1);
|
|
chrome.tabs.create({url: "options.html"});
|
|
}
|
|
check_first_install();
|