Skip to content

Instantly share code, notes, and snippets.

@praveen-me
Created September 20, 2018 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save praveen-me/20a86322951755913bc7679d63d8f6d1 to your computer and use it in GitHub Desktop.
Save praveen-me/20a86322951755913bc7679d63d8f6d1 to your computer and use it in GitHub Desktop.
Chrome Extension Blog
//Check Username is present in localStorage or not
if(localStorage.getItem('userNameKey') === null) {
userDetailsBlock.style.display = 'block';
submitBtn.addEventListener('click', getDetails);
} else {
greetBlock.style.display = 'block';
setGreet();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment