runtime.getManifest()

Get the complete manifest.json file, serialized to a JSON object.
 

Syntax

browser.runtime.getManifest()

Parameters

None.

Return value

A JSON object representing the manifest.

Browser compatibility

ChromeEdgeFirefoxFirefox for AndroidOpera
Basic support22Yes454815

Examples

Get the manifest and log the "name" property:

var manifest = browser.runtime.getManifest();
console.log(manifest.name);

Acknowledgements

This API is based on Chromium's chrome.runtime API. This documentation is derived from runtime.json in the Chromium code.

Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.

Document Tags and Contributors

 Contributors to this page: wbamberg, Makyen, chrisdavidmills
 Last updated by: wbamberg,