blob: f51c1855fdae3e9f194f1c0ce5d48d90750e7cdd [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
[
{
"namespace": "windows",
"description": "Use the <code>chrome.windows</code> API to interact with browser windows. You can use this API to create, modify, and rearrange windows in the browser.",
"compiler_options": {
"implemented_in": "chrome/browser/extensions/api/tabs/tabs_api.h"
},
"types": [
{
"id": "WindowType",
"type": "string",
"description": "The type of browser window this is. In some circumstances a window may not be assigned a <code>type</code> property; for example, when querying closed windows from the $(ref:sessions) API.",
"enum": [{
"name": "normal",
"description": "A normal browser window."
}, {
"name": "popup",
"description": "A browser popup."
}, {
"name": "panel",
"description": "<i>Deprecated in this API.</i> A Chrome App panel-style window. Extensions can only see their own panel windows."
}, {
"name": "app",
"description": "<i>Deprecated in this API.</i> A Chrome App window. Extensions can only see their app own windows."
}, {
"name": "devtools",
"description": "A Developer Tools window."
}]
},
{
"id": "WindowState",
"type": "string",
"description": "The state of this browser window. In some circumstances a window may not be assigned a <code>state</code> property; for example, when querying closed windows from the $(ref:sessions) API.",
// WARNING: These values are written to logs. New enum values can be
// added, but existing enums must never be renumbered or deleted and
// reused. If something needs to be removed, make sure to remove the
// "TabsApi.RequestedWindowState" histogram as it will be no longer
// valid, and make sure to mark it as obsolete in histograms.xml.
"enum": [{
"name": "normal",
"description": "Normal window state (not minimized, maximized, or fullscreen)."
}, {
"name": "minimized",
"description": "Minimized window state."
}, {
"name": "maximized",
"description": "Maximized window state."
}, {
"name": "fullscreen",
"description": "Fullscreen window state."
}, {
"name": "locked-fullscreen",
"nodoc": true,
"description": "Locked fullscreen window state. This fullscreen state cannot be exited by user action and is available only to allowlisted extensions on Chrome OS."
}]
},
{
"id": "Window",
"type": "object",
"properties": {
"id": {"type": "integer", "optional": true, "minimum": 0, "description": "The ID of the window. Window IDs are unique within a browser session. In some circumstances a window may not be assigned an <code>ID</code> property; for example, when querying windows using the $(ref:sessions) API, in which case a session ID may be present."},
"focused": {"type": "boolean", "description": "Whether the window is currently the focused window."},
"top": {"type": "integer", "optional": true, "description": "The offset of the window from the top edge of the screen in pixels. In some circumstances a window may not be assigned a <code>top</code> property; for example, when querying closed windows from the $(ref:sessions) API."},
"left": {"type": "integer", "optional": true, "description": "The offset of the window from the left edge of the screen in pixels. In some circumstances a window may not be assigned a <code>left</code> property; for example, when querying closed windows from the $(ref:sessions) API."},
"width": {"type": "integer", "optional": true, "description": "The width of the window, including the frame, in pixels. In some circumstances a window may not be assigned a <code>width</code> property; for example, when querying closed windows from the $(ref:sessions) API."},
"height": {"type": "integer", "optional": true, "description": "The height of the window, including the frame, in pixels. In some circumstances a window may not be assigned a <code>height</code> property; for example, when querying closed windows from the $(ref:sessions) API."},
"tabs": {"type": "array", "items": { "$ref": "tabs.Tab" }, "optional": true, "description": "Array of $(ref:tabs.Tab) objects representing the current tabs in the window."},
"incognito": {"type": "boolean", "description": "Whether the window is incognito."},
"type": {
"$ref": "WindowType",
"optional": true,
"description": "The type of browser window this is."
},
"state": {
"$ref": "WindowState",
"optional": true,
"description": "The state of this browser window."
},
"alwaysOnTop": {"type": "boolean", "description": "Whether the window is set to be always on top."},
"sessionId": {"type": "string", "optional": true, "description": "The session ID used to uniquely identify a window, obtained from the $(ref:sessions) API."}
}
},
{
"id": "CreateType",
"type": "string",
"description": "Specifies what type of browser window to create. 'panel' is deprecated and is available only to existing allowlisted extensions on Chrome OS.",
"enum": [
{
"name": "normal",
"description": "Specifies the window as a standard window."
},
{
"name": "popup",
"description": "Specifies the window as a popup window."
},
{
"name": "panel",
"description": "Specifies the window as a panel."
}
]
},
{
"id": "QueryOptions",
"type": "object",
"properties": {
"populate": {"type": "boolean", "optional": true, "description": "If true, the $(ref:windows.Window) object has a <var>tabs</var> property that contains a list of the $(ref:tabs.Tab) objects. The <code>Tab</code> objects only contain the <code>url</code>, <code>pendingUrl</code>, <code>title</code>, and <code>favIconUrl</code> properties if the extension's manifest file includes the <code>\"tabs\"</code> permission." },
"windowTypes": {"type": "array", "items": { "$ref": "WindowType" }, "optional": true, "description": "If set, the $(ref:windows.Window) returned is filtered based on its type. If unset, the default filter is set to <code>['normal', 'popup']</code>."}
}
}
],
"properties": {
"WINDOW_ID_NONE": {
"value": -1,
"description": "The windowId value that represents the absence of a Chrome browser window."
},
"WINDOW_ID_CURRENT": {
"value": -2,
"description": "The windowId value that represents the <a href='#the_current_window'>current window</a>."
}
},
"functions": [
{
"name": "get",
"type": "function",
"description": "Gets details about a window.",
"parameters": [
{"type": "integer", "name": "windowId", "minimum": -2},
{
"name": "queryOptions",
"$ref": "QueryOptions",
"optional": true
}
],
"returns_async": {
"name": "callback",
"parameters": [
{
"name": "window", "$ref": "Window"
}
]
}
},
{
"name": "getCurrent",
"type": "function",
"description": "Gets the <a href='#current-window'>current window</a>.",
"parameters": [
{
"name": "queryOptions",
"$ref": "QueryOptions",
"optional": true
}
],
"returns_async": {
"name": "callback",
"parameters": [
{
"name": "window", "$ref": "Window"
}
]
}
},
{
"name": "getLastFocused",
"type": "function",
"description": "Gets the window that was most recently focused &mdash; typically the window 'on top'.",
"parameters": [
{
"name": "queryOptions",
"$ref": "QueryOptions",
"optional": true
}
],
"returns_async": {
"name": "callback",
"parameters": [
{
"name": "window", "$ref": "Window"
}
]
}
},
{
"name": "getAll",
"type": "function",
"description": "Gets all windows.",
"parameters": [
{
"name": "queryOptions",
"$ref": "QueryOptions",
"optional": true
}
],
"returns_async": {
"name": "callback",
"parameters": [
{
"name": "windows", "type": "array", "items": { "$ref": "Window" }
}
]
}
},
{
"name": "create",
"type": "function",
"description": "Creates (opens) a new browser window with any optional sizing, position, or default URL provided.",
"parameters": [
{
"type": "object",
"name": "createData",
"properties": {
"url": {
"description": "A URL or array of URLs to open as tabs in the window. Fully-qualified URLs must include a scheme, e.g., 'http://www.google.com', not 'www.google.com'. Non-fully-qualified URLs are considered relative within the extension. Defaults to the New Tab Page.",
"optional": true,
"choices": [
{"type": "string"},
{"type": "array", "items": {"type": "string"}}
]
},
"tabId": {"type": "integer", "minimum": 0, "optional": true, "description": "The ID of the tab to add to the new window."},
"left": {"type": "integer", "optional": true, "description": "The number of pixels to position the new window from the left edge of the screen. If not specified, the new window is offset naturally from the last focused window. This value is ignored for panels."},
"top": {"type": "integer", "optional": true, "description": "The number of pixels to position the new window from the top edge of the screen. If not specified, the new window is offset naturally from the last focused window. This value is ignored for panels."},
"width": {"type": "integer", "minimum": 0, "optional": true, "description": "The width in pixels of the new window, including the frame. If not specified, defaults to a natural width."},
"height": {"type": "integer", "minimum": 0, "optional": true, "description": "The height in pixels of the new window, including the frame. If not specified, defaults to a natural height."},
"focused": {"type": "boolean", "optional": true, "description": "If <code>true</code>, opens an active window. If <code>false</code>, opens an inactive window."},
"incognito": {"type": "boolean", "optional": true, "description": "Whether the new window should be an incognito window."},
"type": {
"$ref": "CreateType",
"optional": true,
"description": "Specifies what type of browser window to create."
},
"state": {
"$ref": "WindowState",
"optional": true,
"description": "The initial state of the window. The <code>minimized</code>, <code>maximized</code>, and <code>fullscreen</code> states cannot be combined with <code>left</code>, <code>top</code>, <code>width</code>, or <code>height</code>."
},
"setSelfAsOpener": {
"type": "boolean",
"optional": true,
"description": "If <code>true</code>, the newly-created window's 'window.opener' is set to the caller and is in the same <a href=\"https://www.w3.org/TR/html51/browsers.html#unit-of-related-browsing-contexts\">unit of related browsing contexts</a> as the caller."
}
},
"optional": true
}
],
"returns_async": {
"name": "callback",
"optional": true,
"parameters": [
{
"name": "window", "$ref": "Window", "description": "Contains details about the created window.",
"optional": true
}
]
}
},
{
"name": "update",
"type": "function",
"description": "Updates the properties of a window. Specify only the properties that to be changed; unspecified properties are unchanged.",
"parameters": [
{"type": "integer", "name": "windowId", "minimum": -2},
{
"type": "object",
"name": "updateInfo",
"properties": {
"left": {"type": "integer", "optional": true, "description": "The offset from the left edge of the screen to move the window to in pixels. This value is ignored for panels."},
"top": {"type": "integer", "optional": true, "description": "The offset from the top edge of the screen to move the window to in pixels. This value is ignored for panels."},
"width": {"type": "integer", "minimum": 0, "optional": true, "description": "The width to resize the window to in pixels. This value is ignored for panels."},
"height": {"type": "integer", "minimum": 0, "optional": true, "description": "The height to resize the window to in pixels. This value is ignored for panels."},
"focused": {"type": "boolean", "optional": true, "description": "If <code>true</code>, brings the window to the front; cannot be combined with the state 'minimized'. If <code>false</code>, brings the next window in the z-order to the front; cannot be combined with the state 'fullscreen' or 'maximized'."},
"drawAttention": {"type": "boolean", "optional": true, "description": "If <code>true</code>, causes the window to be displayed in a manner that draws the user's attention to the window, without changing the focused window. The effect lasts until the user changes focus to the window. This option has no effect if the window already has focus. Set to <code>false</code> to cancel a previous <code>drawAttention</code> request."},
"state": {
"$ref": "WindowState",
"optional": true,
"description": "The new state of the window. The 'minimized', 'maximized', and 'fullscreen' states cannot be combined with 'left', 'top', 'width', or 'height'."
}
}
}
],
"returns_async": {
"name": "callback",
"optional": true,
"parameters": [
{
"name": "window", "$ref": "Window"
}
]
}
},
{
"name": "remove",
"type": "function",
"description": "Removes (closes) a window and all the tabs inside it.",
"parameters": [
{"type": "integer", "name": "windowId", "minimum": 0}
],
"returns_async": {"name": "callback", "optional": true, "parameters": []}
}
],
"events": [
{
"name": "onCreated",
"type": "function",
"description": "Fired when a window is created.",
"filters": [
{
"name": "windowTypes",
"type": "array",
"items": { "$ref": "WindowType" },
"description": "Conditions that the window's type being created must satisfy. By default it satisfies <code>['normal', 'popup']</code>."
}
],
"parameters": [
{
"$ref": "Window",
"name": "window",
"description": "Details of the created window."
}
]
},
{
"name": "onRemoved",
"type": "function",
"description": "Fired when a window is removed (closed).",
"filters": [
{
"name": "windowTypes",
"type": "array",
"items": { "$ref": "WindowType" },
"description": "Conditions that the window's type being removed must satisfy. By default it satisfies <code>['normal', 'popup']</code>."
}
],
"parameters": [
{"type": "integer", "name": "windowId", "minimum": 0, "description": "ID of the removed window."}
]
},
{
"name": "onFocusChanged",
"type": "function",
"description": "Fired when the currently focused window changes. Returns <code>chrome.windows.WINDOW_ID_NONE</code> if all Chrome windows have lost focus. <b>Note:</b> On some Linux window managers, <code>WINDOW_ID_NONE</code> is always sent immediately preceding a switch from one Chrome window to another.",
"filters": [
{
"name": "windowTypes",
"type": "array",
"items": { "$ref": "WindowType" },
"description": "Conditions that the window's type being removed must satisfy. By default it satisfies <code>['normal', 'popup']</code>."
}
],
"parameters": [
{"type": "integer", "name": "windowId", "minimum": -1, "description": "ID of the newly-focused window."}
]
},
{
"name": "onBoundsChanged",
"type": "function",
"description": "Fired when a window has been resized; this event is only dispatched when the new bounds are committed, and not for in-progress changes.",
"parameters": [
{
"$ref": "Window",
"name": "window",
"description": "Details of the window. The tabs will not be populated for the window."
}
]
}
]
}
]