Source code

Revision control

Copy as Markdown

Other Tools

[
{
"namespace": "manifest",
"types": [
{
"$extend": "OptionalPermission",
"choices": [
{
"type": "string",
"enum": ["webNavigation"]
}
]
}
]
},
{
"namespace": "webNavigation",
"description": "Use the <code>browser.webNavigation</code> API to receive notifications about the status of navigation requests in-flight.",
"permissions": ["webNavigation"],
"types": [
{
"id": "TransitionType",
"type": "string",
"enum": [
"link",
"typed",
"auto_bookmark",
"auto_subframe",
"manual_subframe",
"generated",
"start_page",
"form_submit",
"reload",
"keyword",
"keyword_generated"
],
"description": "Cause of the navigation. The same transition types as defined in the history API are used. These are the same transition types as defined in the $(topic:transition_types)[history API] except with <code>\"start_page\"</code> in place of <code>\"auto_toplevel\"</code> (for backwards compatibility)."
},
{
"id": "TransitionQualifier",
"type": "string",
"enum": [
"client_redirect",
"server_redirect",
"forward_back",
"from_address_bar"
]
},
{
"id": "EventUrlFilters",
"type": "object",
"properties": {
"url": {
"type": "array",
"minItems": 1,
"items": { "$ref": "events.UrlFilter" }
}
}
}
],
"functions": [
{
"name": "getFrame",
"type": "function",
"description": "Retrieves information about the given frame. A frame refers to an &lt;iframe&gt; or a &lt;frame&gt; of a web page and is identified by a tab ID and a frame ID.",
"async": "callback",
"parameters": [
{
"type": "object",
"name": "details",
"description": "Information about the frame to retrieve information about.",
"properties": {
"tabId": {
"type": "integer",
"minimum": 0,
"description": "The ID of the tab in which the frame is."
},
"processId": {
"optional": true,
"type": "integer",
"description": "The ID of the process runs the renderer for this tab."
},
"frameId": {
"type": "integer",
"minimum": 0,
"description": "The ID of the frame in the given tab."
}
}
},
{
"type": "function",
"name": "callback",
"parameters": [
{
"type": "object",
"name": "details",
"optional": true,
"description": "Information about the requested frame, null if the specified frame ID and/or tab ID are invalid.",
"properties": {
"errorOccurred": {
"optional": true,
"type": "boolean",
"description": "True if the last navigation in this frame was interrupted by an error, i.e. the onErrorOccurred event fired."
},
"url": {
"type": "string",
"description": "The URL currently associated with this frame, if the frame identified by the frameId existed at one point in the given tab. The fact that an URL is associated with a given frameId does not imply that the corresponding frame still exists."
},
"tabId": {
"type": "integer",
"description": "The ID of the tab in which the frame is."
},
"frameId": {
"type": "integer",
"description": "The ID of the frame. 0 indicates that this is the main frame; a positive value indicates the ID of a subframe."
},
"parentFrameId": {
"type": "integer",
"description": "ID of frame that wraps the frame. Set to -1 of no parent frame exists."
}
}
}
]
}
]
},
{
"name": "getAllFrames",
"type": "function",
"description": "Retrieves information about all frames of a given tab.",
"async": "callback",
"parameters": [
{
"type": "object",
"name": "details",
"description": "Information about the tab to retrieve all frames from.",
"properties": {
"tabId": {
"type": "integer",
"minimum": 0,
"description": "The ID of the tab."
}
}
},
{
"type": "function",
"name": "callback",
"parameters": [
{
"name": "details",
"type": "array",
"description": "A list of frames in the given tab, null if the specified tab ID is invalid.",
"optional": true,
"items": {
"type": "object",
"properties": {
"errorOccurred": {
"optional": true,
"type": "boolean",
"description": "True if the last navigation in this frame was interrupted by an error, i.e. the onErrorOccurred event fired."
},
"processId": {
"unsupported": true,
"type": "integer",
"description": "The ID of the process runs the renderer for this tab."
},
"tabId": {
"type": "integer",
"description": "The ID of the tab in which the frame is."
},
"frameId": {
"type": "integer",
"description": "The ID of the frame. 0 indicates that this is the main frame; a positive value indicates the ID of a subframe."
},
"parentFrameId": {
"type": "integer",
"description": "ID of frame that wraps the frame. Set to -1 of no parent frame exists."
},
"url": {
"type": "string",
"description": "The URL currently associated with this frame."
}
}
}
}
]
}
]
}
],
"events": [
{
"name": "onBeforeNavigate",
"type": "function",
"description": "Fired when a navigation is about to occur.",
"parameters": [
{
"type": "object",
"name": "details",
"properties": {
"tabId": {
"type": "integer",
"description": "The ID of the tab in which the navigation is about to occur."
},
"url": { "type": "string" },
"processId": {
"unsupported": true,
"type": "integer",
"description": "The ID of the process runs the renderer for this tab."
},
"frameId": {
"type": "integer",
"description": "0 indicates the navigation happens in the tab content window; a positive value indicates navigation in a subframe. Frame IDs are unique for a given tab and process."
},
"parentFrameId": {
"type": "integer",
"description": "ID of frame that wraps the frame. Set to -1 of no parent frame exists."
},
"timeStamp": {
"type": "number",
"description": "The time when the browser was about to start the navigation, in milliseconds since the epoch."
}
}
}
],
"extraParameters": [
{
"name": "filters",
"optional": true,
"$ref": "EventUrlFilters",
"description": "Conditions that the URL being navigated to must satisfy. The 'schemes' and 'ports' fields of UrlFilter are ignored for this event."
}
]
},
{
"name": "onCommitted",
"type": "function",
"description": "Fired when a navigation is committed. The document (and the resources it refers to, such as images and subframes) might still be downloading, but at least part of the document has been received from the server and the browser has decided to switch to the new document.",
"parameters": [
{
"type": "object",
"name": "details",
"properties": {
"tabId": {
"type": "integer",
"description": "The ID of the tab in which the navigation occurs."
},
"url": { "type": "string" },
"processId": {
"unsupported": true,
"type": "integer",
"description": "The ID of the process runs the renderer for this tab."
},
"frameId": {
"type": "integer",
"description": "0 indicates the navigation happens in the tab content window; a positive value indicates navigation in a subframe. Frame IDs are unique within a tab."
},
"transitionType": {
"$ref": "TransitionType",
"description": "Cause of the navigation."
},
"transitionQualifiers": {
"type": "array",
"description": "A list of transition qualifiers.",
"items": { "$ref": "TransitionQualifier" }
},
"timeStamp": {
"type": "number",
"description": "The time when the navigation was committed, in milliseconds since the epoch."
}
}
}
],
"extraParameters": [
{
"name": "filters",
"optional": true,
"$ref": "EventUrlFilters",
"description": "Conditions that the URL being navigated to must satisfy. The 'schemes' and 'ports' fields of UrlFilter are ignored for this event."
}
]
},
{
"name": "onDOMContentLoaded",
"type": "function",
"description": "Fired when the page's DOM is fully constructed, but the referenced resources may not finish loading.",
"parameters": [
{
"type": "object",
"name": "details",
"properties": {
"tabId": {
"type": "integer",
"description": "The ID of the tab in which the navigation occurs."
},
"url": { "type": "string" },
"processId": {
"unsupported": true,
"type": "integer",
"description": "The ID of the process runs the renderer for this tab."
},
"frameId": {
"type": "integer",
"description": "0 indicates the navigation happens in the tab content window; a positive value indicates navigation in a subframe. Frame IDs are unique within a tab."
},
"timeStamp": {
"type": "number",
"description": "The time when the page's DOM was fully constructed, in milliseconds since the epoch."
}
}
}
],
"extraParameters": [
{
"name": "filters",
"optional": true,
"$ref": "EventUrlFilters",
"description": "Conditions that the URL being navigated to must satisfy. The 'schemes' and 'ports' fields of UrlFilter are ignored for this event."
}
]
},
{
"name": "onCompleted",
"type": "function",
"description": "Fired when a document, including the resources it refers to, is completely loaded and initialized.",
"parameters": [
{
"type": "object",
"name": "details",
"properties": {
"tabId": {
"type": "integer",
"description": "The ID of the tab in which the navigation occurs."
},
"url": { "type": "string" },
"processId": {
"unsupported": true,
"type": "integer",
"description": "The ID of the process runs the renderer for this tab."
},
"frameId": {
"type": "integer",
"description": "0 indicates the navigation happens in the tab content window; a positive value indicates navigation in a subframe. Frame IDs are unique within a tab."
},
"timeStamp": {
"type": "number",
"description": "The time when the document finished loading, in milliseconds since the epoch."
}
}
}
],
"extraParameters": [
{
"name": "filters",
"optional": true,
"$ref": "EventUrlFilters",
"description": "Conditions that the URL being navigated to must satisfy. The 'schemes' and 'ports' fields of UrlFilter are ignored for this event."
}
]
},
{
"name": "onErrorOccurred",
"type": "function",
"description": "Fired when an error occurs and the navigation is aborted. This can happen if either a network error occurred, or the user aborted the navigation.",
"parameters": [
{
"type": "object",
"name": "details",
"properties": {
"tabId": {
"type": "integer",
"description": "The ID of the tab in which the navigation occurs."
},
"url": { "type": "string" },
"processId": {
"unsupported": true,
"type": "integer",
"description": "The ID of the process runs the renderer for this tab."
},
"frameId": {
"type": "integer",
"description": "0 indicates the navigation happens in the tab content window; a positive value indicates navigation in a subframe. Frame IDs are unique within a tab."
},
"error": {
"unsupported": true,
"type": "string",
"description": "The error description."
},
"timeStamp": {
"type": "number",
"description": "The time when the error occurred, in milliseconds since the epoch."
}
}
}
],
"extraParameters": [
{
"name": "filters",
"optional": true,
"$ref": "EventUrlFilters",
"description": "Conditions that the URL being navigated to must satisfy. The 'schemes' and 'ports' fields of UrlFilter are ignored for this event."
}
]
},
{
"name": "onCreatedNavigationTarget",
"type": "function",
"description": "Fired when a new window, or a new tab in an existing window, is created to host a navigation.",
"parameters": [
{
"type": "object",
"name": "details",
"properties": {
"sourceTabId": {
"type": "integer",
"description": "The ID of the tab in which the navigation is triggered."
},
"sourceProcessId": {
"type": "integer",
"description": "The ID of the process runs the renderer for the source tab."
},
"sourceFrameId": {
"type": "integer",
"description": "The ID of the frame with sourceTabId in which the navigation is triggered. 0 indicates the main frame."
},
"url": {
"type": "string",
"description": "The URL to be opened in the new window."
},
"tabId": {
"type": "integer",
"description": "The ID of the tab in which the url is opened"
},
"timeStamp": {
"type": "number",
"description": "The time when the browser was about to create a new view, in milliseconds since the epoch."
}
}
}
],
"extraParameters": [
{
"name": "filters",
"optional": true,
"$ref": "EventUrlFilters",
"description": "Conditions that the URL being navigated to must satisfy. The 'schemes' and 'ports' fields of UrlFilter are ignored for this event."
}
]
},
{
"name": "onReferenceFragmentUpdated",
"type": "function",
"description": "Fired when the reference fragment of a frame was updated. All future events for that frame will use the updated URL.",
"parameters": [
{
"type": "object",
"name": "details",
"properties": {
"tabId": {
"type": "integer",
"description": "The ID of the tab in which the navigation occurs."
},
"url": { "type": "string" },
"processId": {
"unsupported": true,
"type": "integer",
"description": "The ID of the process runs the renderer for this tab."
},
"frameId": {
"type": "integer",
"description": "0 indicates the navigation happens in the tab content window; a positive value indicates navigation in a subframe. Frame IDs are unique within a tab."
},
"transitionType": {
"$ref": "TransitionType",
"description": "Cause of the navigation."
},
"transitionQualifiers": {
"type": "array",
"description": "A list of transition qualifiers.",
"items": { "$ref": "TransitionQualifier" }
},
"timeStamp": {
"type": "number",
"description": "The time when the navigation was committed, in milliseconds since the epoch."
}
}
}
],
"extraParameters": [
{
"name": "filters",
"optional": true,
"$ref": "EventUrlFilters",
"description": "Conditions that the URL being navigated to must satisfy. The 'schemes' and 'ports' fields of UrlFilter are ignored for this event."
}
]
},
{
"name": "onTabReplaced",
"type": "function",
"description": "Fired when the contents of the tab is replaced by a different (usually previously pre-rendered) tab.",
"parameters": [
{
"type": "object",
"name": "details",
"properties": {
"replacedTabId": {
"type": "integer",
"description": "The ID of the tab that was replaced."
},
"tabId": {
"type": "integer",
"description": "The ID of the tab that replaced the old tab."
},
"timeStamp": {
"type": "number",
"description": "The time when the replacement happened, in milliseconds since the epoch."
}
}
}
]
},
{
"name": "onHistoryStateUpdated",
"type": "function",
"description": "Fired when the frame's history was updated to a new URL. All future events for that frame will use the updated URL.",
"parameters": [
{
"type": "object",
"name": "details",
"properties": {
"tabId": {
"type": "integer",
"description": "The ID of the tab in which the navigation occurs."
},
"url": { "type": "string" },
"processId": {
"unsupported": true,
"type": "integer",
"description": "The ID of the process runs the renderer for this tab."
},
"frameId": {
"type": "integer",
"description": "0 indicates the navigation happens in the tab content window; a positive value indicates navigation in a subframe. Frame IDs are unique within a tab."
},
"transitionType": {
"$ref": "TransitionType",
"description": "Cause of the navigation."
},
"transitionQualifiers": {
"type": "array",
"description": "A list of transition qualifiers.",
"items": { "$ref": "TransitionQualifier" }
},
"timeStamp": {
"type": "number",
"description": "The time when the navigation was committed, in milliseconds since the epoch."
}
}
}
],
"extraParameters": [
{
"name": "filters",
"optional": true,
"$ref": "EventUrlFilters",
"description": "Conditions that the URL being navigated to must satisfy. The 'schemes' and 'ports' fields of UrlFilter are ignored for this event."
}
]
}
]
}
]