mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 10:19:08 +00:00
9 lines
208 B
JavaScript
9 lines
208 B
JavaScript
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();
|