mirror of https://github.com/electron/electron
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// This features file defines manifest keys implemented under src/chrome.
|
|
// See chrome/common/extensions/api/_features.md to understand this file, as
|
|
// well as feature.h, simple_feature.h, and feature_provider.h.
|
|
|
|
{
|
|
"action": {
|
|
"channel": "stable",
|
|
"extension_types": ["extension"],
|
|
"min_manifest_version": 3
|
|
},
|
|
"author": {
|
|
"channel": "stable",
|
|
"extension_types": "all"
|
|
},
|
|
"content_scripts": {
|
|
"channel": "stable",
|
|
"extension_types": ["extension"]
|
|
},
|
|
"devtools_page": {
|
|
"channel": "stable",
|
|
"extension_types": ["extension"]
|
|
},
|
|
"host_permissions": {
|
|
"channel": "stable",
|
|
"extension_types": ["extension"],
|
|
"min_manifest_version": 3
|
|
},
|
|
"minimum_chrome_version": {
|
|
"channel": "stable",
|
|
"extension_types": ["extension"]
|
|
},
|
|
"short_name": {
|
|
"channel": "stable",
|
|
"extension_types": "all"
|
|
}
|
|
}
|