allFrames property
bool?
get
allFrames
Whether the content script runs in all frames of the matching page, or in
only the top frame. Default is false
.
Implementation
bool? get allFrames => _wrapped.allFrames;
set
allFrames
(bool? v)
Implementation
set allFrames(bool? v) {
_wrapped.allFrames = v;
}