Cable-Desktop/background.js

9 lines
208 B
JavaScript
Raw Normal View History

2014-01-10 08:48:05 +01:00
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();