persistAcrossSessions property

bool? get persistAcrossSessions

Specifies if this content script will persist into future sessions. The default is true.

Implementation

bool? get persistAcrossSessions => _wrapped.persistAcrossSessions;
set persistAcrossSessions (bool? v)

Implementation

set persistAcrossSessions(bool? v) {
  _wrapped.persistAcrossSessions = v;
}