allFrames property
bool?
get
allFrames
If allFrames is true
, implies that the JavaScript or CSS should be
injected into all frames of current page. By default, it's false
and is
only injected into the top frame. If true
and frameId
is set, then the
code is inserted in the selected frame and all of its child frames.
Implementation
bool? get allFrames => _wrapped.allFrames;
set
allFrames
(bool? v)
Implementation
set allFrames(bool? v) {
_wrapped.allFrames = v;
}