blob: 94246b7727cb2c40c461385bf755c00cc7384565 [file] [log] [blame]
// 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 "chrome_url_overrides" manifest key.
namespace chrome_url_overrides {
dictionary UrlOverrideInfo {
// Override for the chrome://newtab page.
DOMString? newtab;
// Override for the chrome://bookmarks page.
DOMString? bookmarks;
// Override for the chrome://history page.
DOMString? history;
[nodoc] DOMString? activationmessage;
[nodoc] DOMString? keyboard;
};
dictionary ManifestKeys {
// Chrome url overrides. Note that an extension can override only one page.
UrlOverrideInfo chrome_url_overrides;
};
};