Main Menu

// modify whitelisted urls here var whitelistedUrls = [ 'https://ophellie.com/knowledge-base/for-sellers/for-sellers-for-sellers/', ]; // do not modify script after this line var shouldShowWidget = (function isCurrentUrlWhitelisted() { var currentUrl = window.location.href; var isWhitelisted = false; whitelistedUrls.forEach(url => { if (currentUrl.indexOf(url) > -1) { isWhitelisted = true; } }) return isWhitelisted; })();