scriptExecutionContext property
String?
get
scriptExecutionContext
Evaluate the expression in the context of a content script of an extension that matches the specified origin. If given, scriptExecutionContext overrides the 'true' setting on useContentScriptContext.
Implementation
String? get scriptExecutionContext => _wrapped.scriptExecutionContext;
set
scriptExecutionContext
(String? v)
Implementation
set scriptExecutionContext(String? v) {
_wrapped.scriptExecutionContext = v;
}