excludeMatches property

List<String>? get excludeMatches

Excludes pages that this content script would otherwise be injected into. See Match Patterns for more details on the syntax of these strings.

Implementation

List<String>? get excludeMatches =>
    _wrapped.excludeMatches?.toDart.cast<String>().map((e) => e).toList();
set excludeMatches (List<String>? v)

Implementation

set excludeMatches(List<String>? v) {
  _wrapped.excludeMatches = v?.toJSArray((e) => e);
}