matchAboutBlank property

bool? get matchAboutBlank

If matchAboutBlank is true, then the code is also injected in about:blank and about:srcdoc frames if your extension has access to its parent document. Code cannot be inserted in top-level about:-frames. By default it is false.

Implementation

bool? get matchAboutBlank => _wrapped.matchAboutBlank;
set matchAboutBlank (bool? v)

Implementation

set matchAboutBlank(bool? v) {
  _wrapped.matchAboutBlank = v;
}