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

Function isSignupPasswordPageUrl

background.js:3267–3275  ·  view source on GitHub ↗
(rawUrl)

Source from the content-addressed store, hash-verified

3265}
3266
3267function isSignupPasswordPageUrl(rawUrl) {
3268 if (typeof navigationUtils !== 'undefined' && navigationUtils?.isSignupPasswordPageUrl) {
3269 return navigationUtils.isSignupPasswordPageUrl(rawUrl);
3270 }
3271 const parsed = parseUrlSafely(rawUrl);
3272 if (!parsed) return false;
3273 return isSignupPageHost(parsed.hostname)
3274 && /\/create-account\/password(?:[/?#]|$)/i.test(parsed.pathname || '');
3275}
3276
3277function isSignupEmailVerificationPageUrl(rawUrl) {
3278 if (typeof navigationUtils !== 'undefined' && navigationUtils?.isSignupEmailVerificationPageUrl) {

Callers

nothing calls this directly

Calls 2

parseUrlSafelyFunction · 0.70
isSignupPageHostFunction · 0.70

Tested by

no test coverage detected