omnibox
拡張機能に、ユーザーがアドレスバーに入力した時のカスタマイズされた振る舞いを有効にします。
ユーザーがブラウザーのアドレスバーにフォーカスした時、ブラウザーは、タイプした内容に応じたサジェストページを含んだドロップダウンリストを表示します。これはユーザーにとって、例えば履歴やブックマークからのページにすぐにアクセスできる方法を与えます。
omnibox API は、ユーザーが拡張機能で定義されたキーワードを入力した時に、ドロップダウンに表示されるサジェストを拡張機能がカスタマイズする方法を提供します。これは下記のように動作します:
- まず、拡張機能は manifest.json ファイルに "omnibox" キーを入れないといけません、ここでキーワードを定義します。
- ユーザーがアドレスバーにフォーカスしてキーワードに続いてスペースをタイプした時、拡張機能は
omnibox.onInputStarted
イベントを受け取ります。 - オプションとして、拡張機能は
omnibox.setDefaultSuggestion()
を呼んでアドレスバーのドロップダウンに最初に表示されるサジェストを定義します。 - ユーザーがこの後にも文字をタイプし続けると、拡張機能は
omnibox.onInputChanged
イベントを受け取ります。イベントリスナーはユーザーがタイプした現在の値を受けて、アドレスバーのドロップダウンにサジェストを生成できます。拡張機能がomnibox.setDefaultSuggestion()
を使ったデフォルトのサジェストをセットした場合、これがドロップダウンの最初に出てきます。 - ユーザーがサジェストを受け入れたら、拡張機能は
omnibox.onInputEntered
イベントを受け取ります。イベントリスナーは受け入れられたサジェストを受け取ります。 - ユーザーがドロップダウンを止めたら、拡張機能は
omnibox.onInputCancelled
イベントを受け取ります。
型
omnibox.OnInputEnteredDisposition
-
Describes the recommended method to handle the selected suggestion: open in the current tab, open in a new foreground tab, or open in a new background tab.
omnibox.SuggestResult
-
Object representing a suggestion to add to the address bar drop-down.
関数
omnibox.setDefaultSuggestion()
-
Defines the first suggestion that appears in the drop-down when the user enters the keyword for your extension, followed by a space.
イベント
omnibox.onInputStarted
-
Fired when a the user focuses the address bar and types your extension's omnibox keyword, followed by a space.
omnibox.onInputChanged
-
Fired whenever the user's input changes, after they have focused the address bar and typed your extension's omnibox keyword, followed by a space.
omnibox.onInputEntered
-
Fired when the user accepts one of your extension's suggestions.
omnibox.onInputCancelled
-
Fired when the user dismisses the address bar drop-down, after they have focused the address bar and typed your extension's omnibox keyword.
ブラウザーの互換性
BCD tables only load in the browser
Example extensions
メモ: This API is based on Chromium's chrome.omnibox
API.Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.