You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The rule will only match network requests when the associated top-level frame's domain matches one from the list of `topDomains`. If the list is omitted, the rule is applied to requests associated with all top-level frame domains. An empty list is not allowed.
13957
+
*
13958
+
* Notes:
13959
+
* - Sub-domains like "a.example.com" are also allowed.
13960
+
* - The entries must consist of only ascii characters.
13961
+
* - Use punycode encoding for internationalized domains.
13962
+
* - Sub-domains of the listed domains are also matched.
13963
+
* - For requests with no associated top-level frame (e.g. ServiceWorker initiated requests, the request initiator's domain is considered instead.
13964
+
* @since Chrome 141
13965
+
*/
13966
+
topDomains?: string[] | undefined;
13967
+
13968
+
/**
13969
+
* The rule will not match network requests when the associated top-level frame's domain
13970
+
* matches one from the list of excludedTopDomains. If the list is empty or omitted,
13971
+
* The rule will not match network requests when the associated top-level frame's domain matches one from the list of `excludedTopDomains`. If the list is empty or omitted, no domains are excluded. This takes precedence over `topDomains`.
13972
+
*
13973
+
* Notes:
13974
+
* - Sub-domains like "a.example.com" are also allowed.
13975
+
* - The entries must consist of only ascii characters.
13976
+
* - Use punycode encoding for internationalized domains.
13977
+
* - Sub-domains of the listed domains are also excluded.
13978
+
* - For requests with no associated top-level frame (e.g. ServiceWorker initiated requests, the request initiator's domain is considered instead.
13979
+
* @since Chrome 141
13980
+
*/
13981
+
excludedTopDomains?: string[] | undefined;
13982
+
13955
13983
/** Whether the `urlFilter` or `regexFilter` (whichever is specified) is case sensitive. Default is false. */
0 commit comments