This type contains information about a tab.
Type
Values of this type are objects. They contain the following properties:
idOptionalinteger. The ID of the tab. Tab IDs are unique within a browser session. Under some circumstances a Tab may not be assigned an ID, for example when querying foreign tabs using thesessionsAPI, in which case a session ID may be present. Tab ID can also be set totabs.TAB_ID_NONEfor apps and devtools windows.indexinteger. The zero-based index of the tab within its window.windowIdinteger. The ID of the window the tab is contained within.openerTabIdOptionalinteger. The ID of the tab that opened this tab, if any. This property is only present if the opener tab still exists.selectedboolean. Whether the tab is selected.highlightedboolean. Whether the tab is highlighted.activeboolean. Whether the tab is active in its window. (Does not necessarily mean the window is focused.)pinnedboolean. Whether the tab is pinned.audibleOptionalboolean. If the tab is not muted: whether the tab is producing sound. If the tab is muted: whether the tab would be producing sound, if it were not muted.mutedInfoOptionaltabs.MutedInfo. Current tab muted state and the reason for the last state change.urlOptionalstring. The URL the tab is displaying. This property is only present if the extension's manifest includes the"tabs"permission.titleOptionalstring. The title of the tab. This property is only present if the extension's manifest includes the"tabs"permission.favIconUrlOptionalstring. The URL of the tab's favicon. This property is only present if the extension's manifest includes the"tabs"permission. It may also be an empty string if the tab is loading.statusOptionalstring. Either loading or complete.incognitoboolean. Whether the tab is in an incognito window.widthOptionalinteger. The width of the tab in pixels.heightOptionalinteger. The height of the tab in pixels.sessionIdOptionalstring. The session ID used to uniquely identify a Tab obtained from thesessionsAPI.
Browser compatibility
Acknowledgements
This API is based on Chromium's chrome.tabs API. This documentation is derived from tabs.json in the Chromium code.
// Copyright 2015 The Chromium Authors. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.