The omnibox API allows you to register a keyword with Google Chrome's address bar, which is also known as the omnibox.
The omnibox API allows you to register a keyword with Google Chrome's address bar, which is also known as the omnibox. * available since Chrome 36 * https://developer.chrome.com/extensions/omnibox
(set-default-suggestion suggestion)
Sets the description and styling for the default suggestion. The default suggestion is the text that is displayed in the first suggestion row underneath the URL bar.
|suggestion| - A partial SuggestResult object, without the 'content' parameter.
https://developer.chrome.com/extensions/omnibox#method-setDefaultSuggestion.
Sets the description and styling for the default suggestion. The default suggestion is the text that is displayed in the first suggestion row underneath the URL bar. |suggestion| - A partial SuggestResult object, without the 'content' parameter. https://developer.chrome.com/extensions/omnibox#method-setDefaultSuggestion.
(tap-all-events chan)
Taps all valid non-deprecated events in chromex.ext.omnibox namespace.
Taps all valid non-deprecated events in chromex.ext.omnibox namespace.
(tap-on-delete-suggestion-events channel & args)
User has deleted a suggested result.
Events will be put on the |channel| with signature [::on-delete-suggestion [text]] where:
|text| - Text of the deleted suggestion.
Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
https://developer.chrome.com/extensions/omnibox#event-onDeleteSuggestion.
User has deleted a suggested result. Events will be put on the |channel| with signature [::on-delete-suggestion [text]] where: |text| - Text of the deleted suggestion. Note: |args| will be passed as additional parameters into Chrome event's .addListener call. https://developer.chrome.com/extensions/omnibox#event-onDeleteSuggestion.
(tap-on-input-cancelled-events channel & args)
User has ended the keyword input session without accepting the input.
Events will be put on the |channel| with signature [::on-input-cancelled []].
Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
https://developer.chrome.com/extensions/omnibox#event-onInputCancelled.
User has ended the keyword input session without accepting the input. Events will be put on the |channel| with signature [::on-input-cancelled []]. Note: |args| will be passed as additional parameters into Chrome event's .addListener call. https://developer.chrome.com/extensions/omnibox#event-onInputCancelled.
(tap-on-input-changed-events channel & args)
User has changed what is typed into the omnibox.
Events will be put on the |channel| with signature [::on-input-changed [text suggest]] where:
|text| - https://developer.chrome.com/extensions/omnibox#property-onInputChanged-text.
Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
https://developer.chrome.com/extensions/omnibox#event-onInputChanged.
User has changed what is typed into the omnibox. Events will be put on the |channel| with signature [::on-input-changed [text suggest]] where: |text| - https://developer.chrome.com/extensions/omnibox#property-onInputChanged-text. Note: |args| will be passed as additional parameters into Chrome event's .addListener call. https://developer.chrome.com/extensions/omnibox#event-onInputChanged.
(tap-on-input-entered-events channel & args)
User has accepted what is typed into the omnibox.
Events will be put on the |channel| with signature [::on-input-entered [text disposition]] where:
|text| - https://developer.chrome.com/extensions/omnibox#property-onInputEntered-text. |disposition| - https://developer.chrome.com/extensions/omnibox#property-onInputEntered-disposition.
Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
https://developer.chrome.com/extensions/omnibox#event-onInputEntered.
User has accepted what is typed into the omnibox. Events will be put on the |channel| with signature [::on-input-entered [text disposition]] where: |text| - https://developer.chrome.com/extensions/omnibox#property-onInputEntered-text. |disposition| - https://developer.chrome.com/extensions/omnibox#property-onInputEntered-disposition. Note: |args| will be passed as additional parameters into Chrome event's .addListener call. https://developer.chrome.com/extensions/omnibox#event-onInputEntered.
(tap-on-input-started-events channel & args)
User has started a keyword input session by typing the extension's keyword. This is guaranteed to be sent exactly once per input session, and before any onInputChanged events.
Events will be put on the |channel| with signature [::on-input-started []].
Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
https://developer.chrome.com/extensions/omnibox#event-onInputStarted.
User has started a keyword input session by typing the extension's keyword. This is guaranteed to be sent exactly once per input session, and before any onInputChanged events. Events will be put on the |channel| with signature [::on-input-started []]. Note: |args| will be passed as additional parameters into Chrome event's .addListener call. https://developer.chrome.com/extensions/omnibox#event-onInputStarted.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close