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 enumerated Type array of paramType )
Undocumented.
Description of this parameter from the json schema.
This parameter was added in version . You must omit this parameter in earlier versions, and you may omit it in any version. If you require this parameter, the manifest key minimum_chrome_version can ensure that your extension won't be run in an earlier browser version.
Parameters

Google Chrome Extensions (Labs)

experimental.webInspector.* APIs

experimental.webInspector.* APIs

The following API modules provide support for extending Chrome Development Tools (aka WebInspector):

Caution: Don't depend on these experimental APIs. They might disappear, and they will change. Also, the Chrome Developer Dashboard doesn't allow you to upload extensions that use experimental APIs.

How to use WebInspector APIs

  1. WebInspector APIs are currently experimental, so please start with the steps for using experimental extension APIs.
  2. Specify the "devtools_page" field in your extension's manifest and make sure you have "experimental" permission:
    {
      "name": ...
      "version": "1.0",
      "minimum_chrome_version": "10.0",
      "devtools_page": "devtools.html",
      "permissions": [ "experimental" ... ],
      ...
    }
    
  3. An instance of the devtools_page specified in your extension's manifest will be created for every Developer Tools window opened. The page may add other extension pages as panels and sidebars to the Developer Tools window using experimental.webInspector.panels API.
  4. The APIs available to extension pages within the Developer Tools window include all experimental.webInspector modules listed above and chrome.extension API. Other extension APIs are not available to the Developer Tools pages, but you may invoke them by sending a request to the background page of your extension, similarly to how it's done in the content scripts.
  5. Please note that, unlike other Chrome Extension APIs, the WebInspector APIs lack "chrome" prefix. This is because the APIs, as the WebInspector itself, are a part of WebKit and may eventually appear in other browsers.
  6. Give us feedback! Your comments and suggestions help us improve the APIs and decide which ones should move from experimental to supported.

More information

For information on the standard APIs that extensions can use, see chrome.* APIs and Other APIs.