AboutSupportDeveloper GuideVersion 38.126.82.64

Restrict navigation to URLs that match an allowed pattern. In the lack of an allowlist, navigation to URLs that match a denied pattern would be prohibited. See here for more details.

Remarks

Superseded by DomainSettingsRule.content. If DomainSettings.default includes a content setting, this setting will be ignored.

interface ContentNavigation {
    allowlist?: string[];
    blacklist?: string[];
    denylist?: string[];
    matchOptions?: RuleMatchOptions;
    whitelist?: string[];
}

Properties

allowlist?: string[]

Allowed URLs for navigation.

blacklist?: string[]

Deprecated

Use denylist property instead.

denylist?: string[]

Forbidden URLs for navigation.

matchOptions?: RuleMatchOptions

Options to use when comparing URIs to the allowlist and denylist patterns.

whitelist?: string[]

Deprecated

Use allowlist property instead.