allFrames property

bool? get allFrames

If specified true, it will inject into all frames, even if the frame is not the top-most frame in the tab. Each frame is checked independently for URL requirements; it will not inject into child frames if the URL requirements are not met. Defaults to false, meaning that only the top frame is matched.

Implementation

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

Implementation

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