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.
9 lines
208 B
JavaScript
9 lines
208 B
JavaScript
11 years ago
|
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();
|