scriptExecutionContext property

String? 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;
void scriptExecutionContext=(String? v)

Implementation

set scriptExecutionContext(String? v) {
  _wrapped.scriptExecutionContext = v;
}