do not display the FAQs page in development mode

This commit is contained in:
Jeremy Schomery 2017-03-14 12:44:10 +03:30
parent 9e4faa9a29
commit 177e5127db

View File

@ -184,6 +184,8 @@ chrome.storage.local.get('version', prefs => {
// Open FAQs page once after installation to guide new users, // Open FAQs page once after installation to guide new users,
// https://github.com/schomery/stylish-chrome/issues/22#issuecomment-279936160 // https://github.com/schomery/stylish-chrome/issues/22#issuecomment-279936160
if (!prefs.version) { if (!prefs.version) {
// do not display the FAQs page in development mode
if ('update_url' in chrome.runtime.getManifest()) {
let version = chrome.runtime.getManifest().version; let version = chrome.runtime.getManifest().version;
chrome.storage.local.set({ chrome.storage.local.set({
version version
@ -195,6 +197,7 @@ chrome.storage.local.get('version', prefs => {
}, 3000); }, 3000);
}) })
} }
}
}); });
// bouncing back 'updatePopup' to popup // bouncing back 'updatePopup' to popup