origins property

List<String>? get origins

The list of host permissions, including those specified in the optional_permissions or permissions keys in the manifest, and those associated with Content Scripts.

Implementation

List<String>? get origins =>
    _wrapped.origins?.toDart.cast<String>().map((e) => e).toList();
set origins (List<String>? v)

Implementation

set origins(List<String>? v) {
  _wrapped.origins = v?.toJSArray((e) => e);
}