blob: 41fc9a17b6f20af9d7a3dedd0bd22fb825cce761 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Stub namespace for the "oauth2" manifest key.
namespace oauth2 {
dictionary OAuth2Info {
// Whether the approval UI should be skipped. Only available to allowlisted
// extensions/apps.
[nodoc] boolean? auto_approve;
// Client ID of the corresponding extension/app.
DOMString? client_id;
// Scopes the extension/app needs access to.
DOMString[] scopes;
};
dictionary ManifestKeys {
OAuth2Info oauth2;
};
};
|