Files

15 lines
675 B
JSON

{
"name": "chrome_extension_update",
"description": "Check for an available update of the running extension via the update server, and optionally apply it. Applying reloads the extension (terminates the service worker; the native bridge connection drops and the response may not return). Chrome throttles update checks (~hourly) \u2014 a throttled result is reported, not an error.",
"parameters": {
"type": "object",
"properties": {
"apply": {
"type": "boolean",
"description": "After a check, if an update is available, apply it via runtime.reload() (terminates the extension; the response may not return). Default false."
}
},
"required": []
}
}