Tabs

Use the chrome.tabs module to interact with the browser's tab system. You can use this module to create, modify, and rearrange tabs in the browser.

Manifest

You must declare the "tabs" permission in your extension's manifest to use the tabs API. For example:

{
  "name": "My extension that uses tabs",
  "version": "0.1",
  "permissions": [
    "tabs"
  ]
}