MCPcopy Index your code
hub / github.com/QLHazyCoder/FlowPilot / isSignupEmailVerificationPageUrl

Function isSignupEmailVerificationPageUrl

background.js:3277–3285  ·  view source on GitHub ↗
(rawUrl)

Source from the content-addressed store, hash-verified

3275}
3276
3277function isSignupEmailVerificationPageUrl(rawUrl) {
3278 if (typeof navigationUtils !== 'undefined' && navigationUtils?.isSignupEmailVerificationPageUrl) {
3279 return navigationUtils.isSignupEmailVerificationPageUrl(rawUrl);
3280 }
3281 const parsed = parseUrlSafely(rawUrl);
3282 if (!parsed) return false;
3283 return isSignupPageHost(parsed.hostname)
3284 && /\/email-verification(?:[/?#]|$)/i.test(parsed.pathname || '');
3285}
3286
3287function is163MailHost(hostname = '') {
3288 if (typeof navigationUtils !== 'undefined' && navigationUtils?.is163MailHost) {

Callers

nothing calls this directly

Calls 2

parseUrlSafelyFunction · 0.70
isSignupPageHostFunction · 0.70

Tested by

no test coverage detected