--- title: chrome_settings_overrides slug: Mozilla/Add-ons/WebExtensions/manifest.json/chrome_settings_overrides tags: - Add-ons - Extensions - WebExtensions - chrome_settings_overrides - manifest.json translation_of: Mozilla/Add-ons/WebExtensions/manifest.json/chrome_settings_overrides ---
chrome_settings_overrides
キーを使ってブラウザー設定を上書きします。2つの設定が利用できます:
"homepage"
、これによりブラウザーのホームページを上書きできます。"search_provider"
、これにより新しい検索エンジンを追加できます。"chrome_settings_overrides" : { "homepage": "https://developer.mozilla.org/" }
"chrome_settings_overrides": { "search_provider": { "name": "Discogs", "search_url": "https://www.discogs.com/search/?q={searchTerms}", "keyword": "disc", "favicon_url": "https://www.discogs.com/favicon.ico" } }
マニフェストキー: chrome_settings_overrides |
|
---|---|
型 | Object |
必須 | No |
chrome_settings_overrides
キーは次のプロパティを持つオブジェクトです:
名前 | 型 | 説明 |
---|---|---|
homepage |
String |
Defines the page to be used as the browser's homepage. The replacement is given as a URL. The URL may:
If two or more extensions both set this value, then the setting from the most recently installed one will take precedence. To override new tabs, use "chrome_url_overrides" instead. This is a localizable property. |
search_provider |
Object |
Defines a search provider to add to the browser. The search provider has a name and a primary search URL. Alternative URLs may be provided, including URLs for more specialized searches like image search. In the URL you supply, use " The search provider will be presented to the user alongside the built-in providers. If you include the This is an object with the properties listed below. All string properties are localizable.
|
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
{{Compat("webextensions.manifest.chrome_settings_overrides", 10)}}