You are viewing extension docs in chrome via the 'file:' scheme: are you expecting to see local changes when you refresh? You'll need run chrome with --allow-file-access-from-files.
paramName
( optional Type array of paramType )
Undocumented.
Description of this parameter from the json schema.

Google Chrome Extensions (Labs)

chrome.experimental.infobars

For information on how to use experimental APIs, see the chrome.experimental.* APIs page.

API reference: chrome.experimental.infobars

Methods

show

void chrome.experimental.infobars.show(, object details, function callback)

Shows an infobar in the specified tab. The infobar will be closed automatically when the tab navigates. Use window.close() to close the infobar before then.

Parameters

details
( Type array of object )
Undocumented.
Description of this parameter from the json schema.
tabId
( optional Type array of integer )
The tab id for the tab to display the infobar in. If not specified, the current selected tab in the last active browser window will be used.
path
( Type array of string )
The html file that contains the infobar.
callback
( optional Type array of function )
Undocumented.
Description of this parameter from the json schema.

Returns

Callback function

The callback parameter should specify a function that looks like this:

If you specify the callback parameter, it should specify a function that looks like this:

function(Window window) {...});
window
( Window array of paramType )
Contains details about the window in which the infobar was created.