JSON Schema Property 'omnibox'

Description

The omnibox API allows you to register a keyword with Google Chrome's address bar, which is also known as the omnibox.

Diagram

JSON Schema Diagram of /properties/omnibox

Value

Object

Properties

Property Name Type Description
keyword string A String value
The keyward that will trigger your extension..

Source

"omnibox": {
    "type": "object",
    "description": "The omnibox API allows you to register a keyword with Google Chrome's address bar, which is also known as the omnibox.",
    "additionalProperties": false,
    "properties": {
        "keyword": {
            "type": "string",
            "description": "The keyward that will trigger your extension."
        }
    },
    "required": [
        "keyword"
    ]
}
http://json.schemastore.org/chrome-manifest (319:6)

References

Documentation for Chrome Manifest
Generated using Liquid Studio 2018 - JSON Studio Edition 16.0.0.7949