diff options
Diffstat (limited to 'ext/js/background/backend.js')
| -rw-r--r-- | ext/js/background/backend.js | 17 | 
1 files changed, 16 insertions, 1 deletions
| diff --git a/ext/js/background/backend.js b/ext/js/background/backend.js index 5f42b4c9..a22371ed 100644 --- a/ext/js/background/backend.js +++ b/ext/js/background/backend.js @@ -239,7 +239,7 @@ class Backend {              const options = this._getProfileOptions({current: true});              if (options.general.showGuide) { -                this._openWelcomeGuidePage(); +                this._openWelcomeGuidePageOnce();              }              this._clipboardMonitor.on('change', this._onClipboardTextChange.bind(this)); @@ -2152,6 +2152,21 @@ class Backend {          return textReplacements;      } +    async _openWelcomeGuidePageOnce() { +        if (isObject(chrome.storage) && isObject(chrome.storage.session)) { +            chrome.storage.session.get(["openedWelcomePage"]).then((result) => { +                console.log(new Date(), "openedWelcomePage:", result["openedWelcomePage"]); +                if (!result["openedWelcomePage"]) { +                    this._openWelcomeGuidePage(); +                    chrome.storage.session.set({"openedWelcomePage": true}); +                } +            }); +        } else { +            // likely not mv3 +            this._openWelcomeGuidePage(); +        } +    } +      async _openWelcomeGuidePage() {          await this._createTab(chrome.runtime.getURL('/welcome.html'));      } |