Omnibox

omnibox
Low RiskCategory: Browser UIView Official Docs

Install Warning

"Read and change your data on all websites you visit."

Technical Context

Enables the extension to provide suggestions in Chrome's address bar (omnibox) when triggered by a specific keyword. This creates a command-line-like interface for quick access to extension features.

What This Means For You

The extension adds a special keyword you can type in the address bar to access its features quickly. For example, typing "dict word" might look up a definition.

Related APIs

This permission enables access to these Chrome APIs:

chrome.omnibox

Common Use Cases

  • Quick search
  • Command launchers
  • Calculators

How to Declare in manifest.json

Add the "omnibox" permission to your extension manifest:

{
  "manifest_version": 3,
  "name": "My Extension",
  "permissions": [
    "omnibox"
  ]
}

What Users Will See

When users install your extension, Chrome will display this warning:

This extension can:

"Read and change your data on all websites you visit."

Related Permissions