Every new update downloaded, my extension open option page in customers computer. Option page include version log and more.
My algorithm is
- Get current version and compare with saved variable in
background.js
If (currentVersion!=savedVersion){ openOptionPage();savedVersion=currentVersion;}
How to get currentVersion
?
is there any available event or property of first time run checker?