| Index: chrome/common/extensions/api/tabs.json
|
| diff --git a/chrome/common/extensions/api/tabs.json b/chrome/common/extensions/api/tabs.json
|
| index 4fe70c74c900b9419ff51b5ae9e51131c1d1bc0e..42961742851c759d249cf35d0401c446fce6f583 100644
|
| --- a/chrome/common/extensions/api/tabs.json
|
| +++ b/chrome/common/extensions/api/tabs.json
|
| @@ -20,6 +20,8 @@
|
| "highlighted": {"type": "boolean", "description": "Whether the tab is highlighted."},
|
| "active": {"type": "boolean", "description": "Whether the tab is active in its window. (Does not necessarily mean the window is focused.)"},
|
| "pinned": {"type": "boolean", "description": "Whether the tab is pinned."},
|
| + "audible": {"type": "boolean", "optional": true, "description": "Whether the tab has produced sound over the past couple of seconds (but it might not be heard if also muted). Equivalent to whether the speaker audio indicator is showing."},
|
| + "muted": {"type": "boolean", "optional": true, "description": "Whether the tab is prevented from playing sound (but hasn't necessarily recently produced sound). Equivalent to whether the muted audio indicator is showing."},
|
| "url": {"type": "string", "optional": true, "description": "The URL the tab is displaying. This property is only present if the extension's manifest includes the <code>\"tabs\"</code> permission."},
|
| "title": {"type": "string", "optional": true, "optional": true, "description": "The title of the tab. This property is only present if the extension's manifest includes the <code>\"tabs\"</code> permission."},
|
| "favIconUrl": {"type": "string", "optional": true, "optional": true, "description": "The URL of the tab's favicon. This property is only present if the extension's manifest includes the <code>\"tabs\"</code> permission. It may also be an empty string if the tab is loading."},
|
| @@ -366,6 +368,16 @@
|
| "optional": true,
|
| "description": "Whether the tabs are pinned."
|
| },
|
| + "audible": {
|
| + "type": "boolean",
|
| + "optional": true,
|
| + "description": "Whether the tabs are audible."
|
| + },
|
| + "muted": {
|
| + "type": "boolean",
|
| + "optional": true,
|
| + "description": "Whether the tabs are muted."
|
| + },
|
| "highlighted": {
|
| "type": "boolean",
|
| "optional": true,
|
| @@ -514,6 +526,11 @@
|
| "optional": true,
|
| "description": "Whether the tab should be pinned."
|
| },
|
| + "muted": {
|
| + "type": "boolean",
|
| + "optional": true,
|
| + "description": "Whether the tab should be muted."
|
| + },
|
| "openerTabId": {
|
| "type": "integer",
|
| "minimum": 0,
|
| @@ -861,6 +878,21 @@
|
| "optional": true,
|
| "description": "The tab's new pinned state."
|
| },
|
| + "audible": {
|
| + "type": "boolean",
|
| + "optional": true,
|
| + "description": "The tab's new audible state."
|
| + },
|
| + "muted": {
|
| + "type": "boolean",
|
| + "optional": true,
|
| + "description": "The tab's new muted state."
|
| + },
|
| + "mutedCause": {
|
| + "type": "string",
|
| + "optional": true,
|
| + "description": "When the muted state changes, indicates what caused it ('user', 'capture', or an extension id)."
|
| + },
|
| "favIconUrl": {
|
| "type": "string",
|
| "optional": true,
|
|
|