electron/shell/common/extensions/api/_manifest_features.json
Shelley Vohr f8b05bc127
feat: support minimum_chrome_version manifest key (#39256)
feat: support minimum_chrome_version extension key
2023-08-03 11:38:31 -04:00

22 lines
664 B
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.
{
"content_scripts": {
"channel": "stable",
"extension_types": ["extension"]
},
"devtools_page": {
"channel": "stable",
"extension_types": ["extension"]
},
"minimum_chrome_version": {
"channel": "stable",
"extension_types": ["extension"]
}
}