useContentScriptContext property
bool?
get
useContentScriptContext
Evaluate the expression in the context of the content script of the
calling extension, provided that the content script is already injected
into the inspected page. If not, the expression is not evaluated and the
callback is invoked with the exception parameter set to an object that has
the isError
field set to true and the code
field set to E_NOTFOUND
.
Implementation
bool? get useContentScriptContext => _wrapped.useContentScriptContext;
set
useContentScriptContext
(bool? v)
Implementation
set useContentScriptContext(bool? v) {
_wrapped.useContentScriptContext = v;
}