Chromium 中chrome.tabs扩展接口定义c++

一、chrome.tabs

注意:Tabs API 可由 Service Worker 和扩展程序页面使用,但不能由内容脚本使用。

使用 chrome.tabs API 与浏览器的标签页系统进行交互。您可以使用此 API 在浏览器中创建、修改和重新排列标签页。

Tabs API 不仅提供操作和管理标签页的功能, 语言,截取屏幕截图,然后 与标签页的内容脚本通信。

权限

大多数功能无需任何权限即可使用。例如:创建新标签页、 重新加载某个标签页、导航到其他网址等。

开发者在使用 Tabs API 时应注意三种权限。

“标签页”权限

此权限不提供对 chrome.tabs 命名空间的访问权限。相反, 授予扩展程序对 4 个扩展调用 tabs.query() 的权限 tabs.Tab 实例上的敏感属性:urlpendingUrltitle 和 favIconUrl

{"name": "My extension",..."permissions": ["tabs"],...
}

主机权限

借助主机权限,扩展程序可以读取和查询匹配标签页的四个敏感项 tabs.Tab 属性。他们还可以使用以下方法直接与匹配的标签页互动: 以tabs.captureVisibleTab()的身份, tabs.executeScript()、tabs.insertCSS()和 tabs.removeCSS()。

{"name": "My extension",..."host_permissions": ["http://*/*","https://*/*"],...
}

“activeTab”权限

activeTab 可向某个扩展程序授予对当前标签页的临时主机权限 响应用户调用。与主机权限不同,activeTab 不会触发任何警告。

{"name": "My extension",..."permissions": ["activeTab"],...
}

chrome.tabs  |  API  |  Chrome for Developers 

二、chrome.tabs c++接口定义:

1、tabs.json

chrome\common\extensions\api\tabs.json

// 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": "tabs","description": "Use the <code>chrome.tabs</code> API to interact with the browser's tab system. You can use this API to create, modify, and rearrange tabs in the browser.","types": [{"id": "TabStatus","type": "string","enum": ["unloaded", "loading", "complete"],"description": "The tab's loading status."},{"id": "MutedInfoReason","type": "string","description": "An event that caused a muted state change.","enum": [{"name": "user", "description": "A user input action set the muted state."},{"name": "capture", "description": "Tab capture was started, forcing a muted state change."},{"name": "extension", "description": "An extension, identified by the extensionId field, set the muted state."}]},{"id": "MutedInfo","type": "object","description": "The tab's muted state and the reason for the last state change.","properties": {"muted": {"type": "boolean","description": "Whether the tab is muted (prevented from playing sound). The tab may be muted even if it has not played or is not currently playing sound. Equivalent to whether the 'muted' audio indicator is showing."},"reason": {"$ref": "MutedInfoReason","optional": true,"description": "The reason the tab was muted or unmuted. Not set if the tab's mute state has never been changed."},"extensionId": {"type": "string","optional": true,"description": "The ID of the extension that changed the muted state. Not set if an extension was not the reason the muted state last changed."}}},{"id": "Tab","type": "object","properties": {"id": {"type": "integer", "minimum": -1, "optional": true, "description": "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 the $(ref:sessions) API, in which case a session ID may be present. Tab ID can also be set to <code>chrome.tabs.TAB_ID_NONE</code> for apps and devtools windows."},// TODO(kalman): Investigate how this is ending up as -1 (based on window type? a bug?) and whether it should be optional instead."index": {"type": "integer", "minimum": -1, "description": "The zero-based index of the tab within its window."},"groupId": {"type": "integer", "minimum": -1, "description": "The ID of the group that the tab belongs to."},"windowId": {"type": "integer", "minimum": 0, "description": "The ID of the window that contains the tab."},"openerTabId": {"type": "integer", "minimum": 0, "optional": true, "description": "The ID of the tab that opened this tab, if any. This property is only present if the opener tab still exists."},"selected": {"type": "boolean", "description": "Whether the tab is selected.", "deprecated": "Please use $(ref:tabs.Tab.highlighted)."},"lastAccessed": {"type": "number", "optional": true, "description": "The last time the tab was accessed as the number of milliseconds since epoch."},"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."},"discarded": {"type": "boolean", "description": "Whether the tab is discarded. A discarded tab is one whose content has been unloaded from memory, but is still visible in the tab strip. Its content is reloaded the next time it is activated."},"autoDiscardable":  {"type": "boolean", "description": "Whether the tab can be discarded automatically by the browser when resources are low."},"mutedInfo": {"$ref": "MutedInfo", "optional": true, "description": "The tab's muted state and the reason for the last state change."},"url": {"type": "string", "optional": true, "description": "The last committed URL of the main frame of the tab. This property is only present if the extension's manifest includes the <code>\"tabs\"</code> permission and may be an empty string if the tab has not yet committed. See also $(ref:Tab.pendingUrl)."},"pendingUrl": {"type": "string", "optional": true, "description": "The URL the tab is navigating to, before it has committed. This property is only present if the extension's manifest includes the <code>\"tabs\"</code> permission and there is a pending navigation."},"title": {"type": "string", "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, "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."},"status": {"$ref": "TabStatus","optional": true,"description": "The tab's loading status."},"incognito": {"type": "boolean", "description": "Whether the tab is in an incognito window."},"width": {"type": "integer", "optional": true, "description": "The width of the tab in pixels."},"height": {"type": "integer", "optional": true, "description": "The height of the tab in pixels."},"sessionId": {"type": "string", "optional": true, "description": "The session ID used to uniquely identify a tab obtained from the $(ref:sessions) API."}}},{"id": "ZoomSettingsMode","type": "string","description": "Defines how zoom changes are handled, i.e., which entity is responsible for the actual scaling of the page; defaults to <code>automatic</code>.","enum": [{"name": "automatic","description": "Zoom changes are handled automatically by the browser."},{"name": "manual","description": "Overrides the automatic handling of zoom changes. The <code>onZoomChange</code> event will still be dispatched, and it is the extension's responsibility to listen for this event and manually scale the page. This mode does not support <code>per-origin</code> zooming, and thus ignores the <code>scope</code> zoom setting and assumes <code>per-tab</code>."},{"name": "disabled","description": "Disables all zooming in the tab. The tab reverts to the default zoom level, and all attempted zoom changes are ignored."}]},{"id": "ZoomSettingsScope","type": "string","description": "Defines whether zoom changes persist for the page's origin, or only take effect in this tab; defaults to <code>per-origin</code> when in <code>automatic</code> mode, and <code>per-tab</code> otherwise.","enum": [{"name": "per-origin","description": "Zoom changes persist in the zoomed page's origin, i.e., all other tabs navigated to that same origin are zoomed as well. Moreover, <code>per-origin</code> zoom changes are saved with the origin, meaning that when navigating to other pages in the same origin, they are all zoomed to the same zoom factor. The <code>per-origin</code> scope is only available in the <code>automatic</code> mode."},{"name": "per-tab","description": "Zoom changes only take effect in this tab, and zoom changes in other tabs do not affect the zooming of this tab. Also, <code>per-tab</code> zoom changes are reset on navigation; navigating a tab always loads pages with their <code>per-origin</code> zoom factors."}]},{"id": "ZoomSettings","type": "object","description": "Defines how zoom changes in a tab are handled and at what scope.","properties": {"mode": {"$ref": "ZoomSettingsMode","description": "Defines how zoom changes are handled, i.e., which entity is responsible for the actual scaling of the page; defaults to <code>automatic</code>.","optional": true},"scope": {"$ref": "ZoomSettingsScope","description": "Defines whether zoom changes persist for the page's origin, or only take effect in this tab; defaults to <code>per-origin</code> when in <code>automatic</code> mode, and <code>per-tab</code> otherwise.","optional": true},"defaultZoomFactor": {"type": "number","optional": true,"description": "Used to return the default zoom level for the current tab in calls to tabs.getZoomSettings."}}},{"id": "WindowType","type": "string","enum": ["normal", "popup", "panel", "app", "devtools"],"description": "The type of window."}],"properties": {"MAX_CAPTURE_VISIBLE_TAB_CALLS_PER_SECOND": {"value": 2,"description": "The maximum number of times that $(ref:captureVisibleTab) can be called per second. $(ref:captureVisibleTab) is expensive and should not be called too often."},"TAB_ID_NONE": {"value": -1,"description": "An ID that represents the absence of a browser tab."}},"functions": [{"name": "get","type": "function","description": "Retrieves details about the specified tab.","parameters": [{"type": "integer","name": "tabId","minimum": 0}],"returns_async": {"name": "callback","parameters": [{"name": "tab", "$ref": "Tab"}]}},{"name": "getCurrent","type": "function","description": "Gets the tab that this script call is being made from. Returns <code>undefined</code> if called from a non-tab context (for example, a background page or popup view).","parameters": [],"returns_async": {"name": "callback","parameters": [{"name": "tab","$ref": "Tab","optional": true}]}},{"name": "connect","nocompile": true,"type": "function","description": "Connects to the content script(s) in the specified tab. The $(ref:runtime.onConnect) event is fired in each content script running in the specified tab for the current extension. For more details, see <a href='messaging'>Content Script Messaging</a>.","parameters": [{"type": "integer","name": "tabId","minimum": 0},{"type": "object","name": "connectInfo","properties": {"name": { "type": "string", "optional": true, "description": "Is passed into onConnect for content scripts that are listening for the connection event." },"frameId": {"type": "integer","optional": true,"minimum": 0,"description": "Open a port to a specific <a href='webNavigation#frame_ids'>frame</a> identified by <code>frameId</code> instead of all frames in the tab."},"documentId": {"type": "string","optional": true,"description": "Open a port to a specific <a href='webNavigation#document_ids'>document</a> identified by <code>documentId</code> instead of all frames in the tab."}},"optional": true}],"returns": {"$ref": "runtime.Port","description": "A port that can be used to communicate with the content scripts running in the specified tab. The port's $(ref:runtime.Port) event is fired if the tab closes or does not exist. "}},{"name": "sendRequest","deprecated": "Please use $(ref:runtime.sendMessage).","nocompile": true,"type": "function","description": "Sends a single request to the content script(s) in the specified tab, with an optional callback to run when a response is sent back.  The $(ref:extension.onRequest) event is fired in each content script running in the specified tab for the current extension.","parameters": [{"type": "integer","name": "tabId","minimum": 0},{"type": "any","name": "request"}],"returns_async": {"name": "callback","optional": true,"parameters": [{"name": "response","type": "any","description": "The JSON response object sent by the handler of the request. If an error occurs while connecting to the specified tab, the callback is called with no arguments and $(ref:runtime.lastError) is set to the error message."}]}},{"name": "sendMessage","nocompile": true,"type": "function","description": "Sends a single message to the content script(s) in the specified tab, with an optional callback to run when a response is sent back.  The $(ref:runtime.onMessage) event is fired in each content script running in the specified tab for the current extension.","parameters": [{"type": "integer","name": "tabId","minimum": 0},{"type": "any","name": "message","description": "The message to send. This message should be a JSON-ifiable object."},{"type": "object","name": "options","properties": {"frameId": {"type": "integer","optional": true,"minimum": 0,"description": "Send a message to a specific <a href='webNavigation#frame_ids'>frame</a> identified by <code>frameId</code> instead of all frames in the tab."},"documentId": {"type": "string","optional": true,"description": "Send a message to a specific <a href='webNavigation#document_ids'>document</a> identified by <code>documentId</code> instead of all frames in the tab."}},"optional": true}],"returns_async": {"name": "callback","optional": true,"parameters": [{"name": "response","type": "any","description": "The JSON response object sent by the handler of the message. If an error occurs while connecting to the specified tab, the callback is called with no arguments and $(ref:runtime.lastError) is set to the error message."}]}},{"name": "getSelected","deprecated": "Please use $(ref:tabs.query) <code>{active: true}</code>.","type": "function","description": "Gets the tab that is selected in the specified window.","parameters": [{"type": "integer","name": "windowId","minimum": -2,"optional": true,"description": "Defaults to the <a href='windows#current-window'>current window</a>."}],"returns_async": {"name": "callback","parameters": [{"name": "tab", "$ref": "Tab"}]}},{"name": "getAllInWindow","type": "function","deprecated": "Please use $(ref:tabs.query) <code>{windowId: windowId}</code>.","description": "Gets details about all tabs in the specified window.","parameters": [{"type": "integer","name": "windowId","minimum": -2,"optional": true,"description": "Defaults to the <a href='windows#current-window'>current window</a>."}],"returns_async": {"name": "callback","parameters": [{"name": "tabs", "type": "array", "items": { "$ref": "Tab" } }]}},{"name": "create","type": "function","description": "Creates a new tab.","parameters": [{"type": "object","name": "createProperties","properties": {"windowId": {"type": "integer","minimum": -2,"optional": true,"description": "The window in which to create the new tab. Defaults to the <a href='windows#current-window'>current window</a>."},"index": {"type": "integer","minimum": 0,"optional": true,"description": "The position the tab should take in the window. The provided value is clamped to between zero and the number of tabs in the window."},"url": {"type": "string","optional": true,"description": "The URL to initially navigate the tab to. Fully-qualified URLs must include a scheme (i.e., 'http://www.google.com', not 'www.google.com'). Relative URLs are relative to the current page within the extension. Defaults to the New Tab Page."},"active": {"type": "boolean","optional": true,"description": "Whether the tab should become the active tab in the window. Does not affect whether the window is focused (see $(ref:windows.update)). Defaults to <var>true</var>."},"selected": {"deprecated": "Please use <em>active</em>.","type": "boolean","optional": true,"description": "Whether the tab should become the selected tab in the window. Defaults to <var>true</var>"},"pinned": {"type": "boolean","optional": true,"description": "Whether the tab should be pinned. Defaults to <var>false</var>"},"openerTabId": {"type": "integer","minimum": 0,"optional": true,"description": "The ID of the tab that opened this tab. If specified, the opener tab must be in the same window as the newly created tab."}}}],"returns_async": {"name": "callback","optional": true,"parameters": [{"name": "tab","$ref": "Tab","description": "The created tab."}]}},{"name": "duplicate","type": "function","description": "Duplicates a tab.","parameters": [{"type": "integer","name": "tabId","minimum": 0,"description": "The ID of the tab to duplicate."}],"returns_async": {"name": "callback","optional": true,"parameters": [{"name": "tab","optional": true,"description": "Details about the duplicated tab. The $(ref:tabs.Tab) object does not contain <code>url</code>, <code>pendingUrl</code>, <code>title</code>, and <code>favIconUrl</code> if the <code>\"tabs\"</code> permission has not been requested.","$ref": "Tab"}]}},{"name": "query","type": "function","description": "Gets all tabs that have the specified properties, or all tabs if no properties are specified.","parameters": [{"type": "object","name": "queryInfo","properties": {"active": {"type": "boolean","optional": true,"description": "Whether the tabs are active in their windows."},"pinned": {"type": "boolean","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,"description": "Whether the tabs are highlighted."},"discarded": {"type": "boolean","optional": true,"description": "Whether the tabs are discarded. A discarded tab is one whose content has been unloaded from memory, but is still visible in the tab strip. Its content is reloaded the next time it is activated."},"autoDiscardable": {"type": "boolean","optional": true,"description": "Whether the tabs can be discarded automatically by the browser when resources are low."},"currentWindow": {"type": "boolean","optional": true,"description": "Whether the tabs are in the <a href='windows#current-window'>current window</a>."},"lastFocusedWindow": {"type": "boolean","optional": true,"description": "Whether the tabs are in the last focused window."},"status": {"$ref": "TabStatus","optional": true,"description": "The tab loading status."},"title": {"type": "string","optional": true,"description": "Match page titles against a pattern. This property is ignored if the extension does not have the <code>\"tabs\"</code> permission."},"url": {"choices": [{"type": "string"},{"type": "array", "items": {"type": "string"}}],"optional": true,"description": "Match tabs against one or more <a href='match_patterns'>URL patterns</a>. Fragment identifiers are not matched. This property is ignored if the extension does not have the <code>\"tabs\"</code> permission."},"groupId": {"type": "integer","optional": true,"minimum": -1,"description": "The ID of the group that the tabs are in, or $(ref:tabGroups.TAB_GROUP_ID_NONE) for ungrouped tabs."},"windowId": {"type": "integer","optional": true,"minimum": -2,"description": "The ID of the parent window, or $(ref:windows.WINDOW_ID_CURRENT) for the <a href='windows#current-window'>current window</a>."},"windowType": {"$ref": "WindowType","optional": true,"description": "The type of window the tabs are in."},"index": {"type": "integer","optional": true,"minimum": 0,"description": "The position of the tabs within their windows."}}}],"returns_async": {"name": "callback","parameters": [{"name": "result","type": "array","items": {"$ref": "Tab"}}]}},{"name": "highlight","type": "function","description": "Highlights the given tabs and focuses on the first of group. Will appear to do nothing if the specified tab is currently active.","parameters": [{"type": "object","name": "highlightInfo","properties": {"windowId": {"type": "integer","optional": true,"description": "The window that contains the tabs.","minimum": -2},"tabs": {"description": "One or more tab indices to highlight.","choices": [{"type": "array", "items": {"type": "integer", "minimum": 0}},{"type": "integer"}]}}}],"returns_async": {"name": "callback","optional": true,"parameters": [{"name": "window","$ref": "windows.Window","description": "Contains details about the window whose tabs were highlighted."}]}},{"name": "update","type": "function","description": "Modifies the properties of a tab. Properties that are not specified in <var>updateProperties</var> are not modified.","parameters": [{"type": "integer","name": "tabId","minimum": 0,"optional": true,"description": "Defaults to the selected tab of the <a href='windows#current-window'>current window</a>."},{"type": "object","name": "updateProperties","properties": {"url": {"type": "string","optional": true,"description": "A URL to navigate the tab to. JavaScript URLs are not supported; use $(ref:scripting.executeScript) instead."},"active": {"type": "boolean","optional": true,"description": "Whether the tab should be active. Does not affect whether the window is focused (see $(ref:windows.update))."},"highlighted": {"type": "boolean","optional": true,"description": "Adds or removes the tab from the current selection."},"selected": {"deprecated": "Please use <em>highlighted</em>.","type": "boolean","optional": true,"description": "Whether the tab should be selected."},"pinned": {"type": "boolean","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,"optional": true,"description": "The ID of the tab that opened this tab. If specified, the opener tab must be in the same window as this tab."},"autoDiscardable": {"type": "boolean","optional": true,"description": "Whether the tab should be discarded automatically by the browser when resources are low."}}}],"returns_async": {"name": "callback","optional": true,"parameters": [{"name": "tab","$ref": "Tab","optional": true,"description": "Details about the updated tab. The $(ref:tabs.Tab) object does not contain <code>url</code>, <code>pendingUrl</code>, <code>title</code>, and <code>favIconUrl</code> if the <code>\"tabs\"</code> permission has not been requested."}]}},{"name": "move","type": "function","description": "Moves one or more tabs to a new position within its window, or to a new window. Note that tabs can only be moved to and from normal (window.type === \"normal\") windows.","parameters": [{"name": "tabIds","description": "The tab ID or list of tab IDs to move.","choices": [{"type": "integer", "minimum": 0},{"type": "array", "items": {"type": "integer", "minimum": 0}}]},{"type": "object","name": "moveProperties","properties": {"windowId": {"type": "integer","minimum": -2,"optional": true,"description": "Defaults to the window the tab is currently in."},"index": {"type": "integer","minimum": -1,"description": "The position to move the window to. Use <code>-1</code> to place the tab at the end of the window."}}}],"returns_async": {"name": "callback","optional": true,"parameters": [{"name": "tabs","description": "Details about the moved tabs.","choices": [{"$ref": "Tab"},{"type": "array", "items": {"$ref": "Tab"}}]}]}},{"name": "reload","type": "function","description": "Reload a tab.","parameters": [{"type": "integer", "name": "tabId", "minimum": 0, "optional": true, "description": "The ID of the tab to reload; defaults to the selected tab of the current window."},{"type": "object","name": "reloadProperties","optional": true,"properties": {"bypassCache": {"type": "boolean","optional": true,"description": "Whether to bypass local caching. Defaults to <code>false</code>."}}}],"returns_async": {"name": "callback", "optional": true, "parameters": []}},{"name": "remove","type": "function","description": "Closes one or more tabs.","parameters": [{"name": "tabIds","description": "The tab ID or list of tab IDs to close.","choices": [{"type": "integer", "minimum": 0},{"type": "array", "items": {"type": "integer", "minimum": 0}}]}],"returns_async": {"name": "callback", "optional": true, "parameters": []}},{"name": "group","type": "function","description": "Adds one or more tabs to a specified group, or if no group is specified, adds the given tabs to a newly created group.","parameters": [{"name": "options","type": "object","properties": {"tabIds": {"description": "The tab ID or list of tab IDs to add to the specified group.","choices": [{"type": "integer", "minimum": 0},{"type": "array", "items": {"type": "integer", "minimum": 0}, "minItems": 1}]},"groupId": {"type": "integer","description": "The ID of the group to add the tabs to. If not specified, a new group will be created.","minimum": 0,"optional": true},"createProperties": {"type": "object","optional": true,"description": "Configurations for creating a group. Cannot be used if groupId is already specified.","properties": {"windowId": {"type": "integer","minimum": -2,"optional": true,"description": "The window of the new group. Defaults to the current window."}}}}}],"returns_async": {"name": "callback","optional": true,"parameters": [{"name": "groupId","type": "integer","minimum": 0,"description": "The ID of the group that the tabs were added to."}]}},{"name": "ungroup","type": "function","description": "Removes one or more tabs from their respective groups. If any groups become empty, they are deleted.","parameters": [{"name": "tabIds","description": "The tab ID or list of tab IDs to remove from their respective groups.","choices": [{"type": "integer", "minimum": 0},{"type": "array", "items": {"type": "integer", "minimum": 0}, "minItems": 1}]}],"returns_async": {"name": "callback", "optional": true, "parameters": []}},{"name": "detectLanguage","type": "function","description": "Detects the primary language of the content in a tab.","parameters": [{"type": "integer","name": "tabId","minimum": 0,"optional": true,"description": "Defaults to the active tab of the <a href='windows#current-window'>current window</a>."}],"returns_async": {"name": "callback","parameters": [{"type": "string","name": "language","description": "An ISO language code such as <code>en</code> or <code>fr</code>. For a complete list of languages supported by this method, see <a href='http://src.chromium.org/viewvc/chrome/trunk/src/third_party/cld/languages/internal/languages.cc'>kLanguageInfoTable</a>. The second to fourth columns are checked and the first non-NULL value is returned, except for Simplified Chinese for which <code>zh-CN</code> is returned. For an unknown/undefined language, <code>und</code> is returned."}]}},{"name": "captureVisibleTab","type": "function","description": "Captures the visible area of the currently active tab in the specified window. In order to call this method, the extension must have either the <a href='declare_permissions'>&lt;all_urls&gt;</a> permission or the <a href='activeTab'>activeTab</a> permission. In addition to sites that extensions can normally access, this method allows extensions to capture sensitive sites that are otherwise restricted, including chrome:-scheme pages, other extensions' pages, and data: URLs. These sensitive sites can only be captured with the activeTab permission. File URLs may be captured only if the extension has been granted file access.","parameters": [{"type": "integer","name": "windowId","minimum": -2,"optional": true,"description": "The target window. Defaults to the <a href='windows#current-window'>current window</a>."},{"$ref": "extensionTypes.ImageDetails","name": "options","optional": true}],"returns_async": {"name": "callback","parameters": [{"type": "string","name": "dataUrl","description": "A data URL that encodes an image of the visible area of the captured tab. May be assigned to the 'src' property of an HTML <code>img</code> element for display."}]}},{"name": "executeScript","deprecated": "Replaced by $(ref:scripting.executeScript) in Manifest V3.","type": "function","description": "Injects JavaScript code into a page. For details, see the <a href='content_scripts#pi'>programmatic injection</a> section of the content scripts doc.","parameters": [{"type": "integer", "name": "tabId", "minimum": 0, "optional": true, "description": "The ID of the tab in which to run the script; defaults to the active tab of the current window."},{"$ref": "extensionTypes.InjectDetails","name": "details","description": "Details of the script to run. Either the code or the file property must be set, but both may not be set at the same time."}],"returns_async": {"name": "callback","optional": true,"description": "Called after all the JavaScript has been executed.","parameters": [{"name": "result","optional": true,"type": "array","items": {"type": "any", "minimum": 0},"description": "The result of the script in every injected frame."}]}},{"name": "insertCSS","deprecated": "Replaced by $(ref:scripting.insertCSS) in Manifest V3.","type": "function","description": "Injects CSS into a page. Styles inserted with this method can be removed with $(ref:scripting.removeCSS). For details, see the <a href='content_scripts#pi'>programmatic injection</a> section of the content scripts doc.","parameters": [{"type": "integer", "name": "tabId", "minimum": 0, "optional": true, "description": "The ID of the tab in which to insert the CSS; defaults to the active tab of the current window."},{"$ref": "extensionTypes.InjectDetails","name": "details","description": "Details of the CSS text to insert. Either the code or the file property must be set, but both may not be set at the same time."}],"returns_async": {"name": "callback","optional": true,"description": "Called when all the CSS has been inserted.","parameters": []}},{"name": "removeCSS","deprecated": "Replaced by $(ref:scripting.removeCSS) in Manifest V3.","type": "function","description": "Removes from a page CSS that was previously injected by a call to $(ref:scripting.insertCSS).","parameters": [{"type": "integer","name": "tabId","minimum": 0,"optional": true,"description": "The ID of the tab from which to remove the CSS; defaults to the active tab of the current window."},{"$ref": "extensionTypes.DeleteInjectionDetails","name": "details","description": "Details of the CSS text to remove. Either the code or the file property must be set, but both may not be set at the same time."}],"returns_async": {"name": "callback","optional": true,"description": "Called when all the CSS has been removed.","parameters": []}},{"name": "setZoom","type": "function","description": "Zooms a specified tab.","parameters": [{"type": "integer","name": "tabId","minimum": 0,"optional": true,"description": "The ID of the tab to zoom; defaults to the active tab of the current window."},{"type": "number","name": "zoomFactor","description": "The new zoom factor. A value of <code>0</code> sets the tab to its current default zoom factor. Values greater than <code>0</code> specify a (possibly non-default) zoom factor for the tab."}],"returns_async": {"name": "callback","optional": true,"description": "Called after the zoom factor has been changed.","parameters": []}},{"name": "getZoom","type": "function","description": "Gets the current zoom factor of a specified tab.","parameters": [{"type": "integer","name": "tabId","minimum": 0,"optional": true,"description": "The ID of the tab to get the current zoom factor from; defaults to the active tab of the current window."}],"returns_async": {"name": "callback","description": "Called with the tab's current zoom factor after it has been fetched.","parameters": [{"type": "number","name": "zoomFactor","description": "The tab's current zoom factor."}]}},{"name": "setZoomSettings","type": "function","description": "Sets the zoom settings for a specified tab, which define how zoom changes are handled. These settings are reset to defaults upon navigating the tab.","parameters": [{"type": "integer","name": "tabId","optional": true,"minimum": 0,"description": "The ID of the tab to change the zoom settings for; defaults to the active tab of the current window."},{"$ref": "ZoomSettings","name": "zoomSettings","description": "Defines how zoom changes are handled and at what scope."}],"returns_async": {"name": "callback","optional": true,"description": "Called after the zoom settings are changed.","parameters": []}},{"name": "getZoomSettings","type": "function","description": "Gets the current zoom settings of a specified tab.","parameters": [{"type": "integer","name": "tabId","optional": true,"minimum": 0,"description": "The ID of the tab to get the current zoom settings from; defaults to the active tab of the current window."}],"returns_async": {"name": "callback","description": "Called with the tab's current zoom settings.","parameters": [{"$ref": "ZoomSettings","name": "zoomSettings","description": "The tab's current zoom settings."}]}},{"name": "discard","type": "function","description": "Discards a tab from memory. Discarded tabs are still visible on the tab strip and are reloaded when activated.","parameters": [{"type": "integer","name": "tabId","optional": true,"minimum": 0,"description": "The ID of the tab to be discarded. If specified, the tab is discarded unless it is active or already discarded. If omitted, the browser discards the least important tab. This can fail if no discardable tabs exist."}],"returns_async": {"name": "callback","optional": true,"description": "Called after the operation is completed.","parameters": [{"name": "tab","$ref": "Tab","optional": true,"description": "The discarded tab, if it was successfully discarded; undefined otherwise."}]}},{"name": "goForward","type": "function","description": "Go foward to the next page, if one is available.","parameters": [{"type": "integer","name": "tabId","optional": true,"minimum": 0,"description": "The ID of the tab to navigate forward; defaults to the selected tab of the current window."}],"returns_async": {"name": "callback","optional": true,"parameters": []}},{"name": "goBack","type": "function","description": "Go back to the previous page, if one is available.","parameters": [{"type": "integer","name": "tabId","optional": true,"minimum": 0,"description": "The ID of the tab to navigate back; defaults to the selected tab of the current window."}],"returns_async": {"name": "callback","optional": true,"parameters": []}}],"events": [{"name": "onCreated","type": "function","description": "Fired when a tab is created. Note that the tab's URL and tab group membership may not be set at the time this event is fired, but you can listen to onUpdated events so as to be notified when a URL is set or the tab is added to a tab group.","parameters": [{"$ref": "Tab","name": "tab","description": "Details of the tab that was created."}]},{"name": "onUpdated","type": "function","description": "Fired when a tab is updated.","parameters": [{"type": "integer", "name": "tabId", "minimum": 0},{"type": "object","name": "changeInfo","description": "Lists the changes to the state of the tab that was updated.","properties": {"status": {"$ref": "TabStatus","optional": true,"description": "The tab's loading status."},"url": {"type": "string","optional": true,"description": "The tab's URL if it has changed."},"groupId": {"type": "integer","optional": true,"minimum": -1,"description": "The tab's new group."},"pinned": {"type": "boolean","optional": true,"description": "The tab's new pinned state."},"audible": {"type": "boolean","optional": true,"description": "The tab's new audible state."},"discarded": {"type": "boolean","optional": true,"description": "The tab's new discarded state."},"autoDiscardable": {"type": "boolean","optional": true,"description": "The tab's new auto-discardable state."},"mutedInfo": {"$ref": "MutedInfo","optional": true,"description": "The tab's new muted state and the reason for the change."},"favIconUrl": {"type": "string","optional": true,"description": "The tab's new favicon URL."},"title": {"type": "string","optional": true,"description": "The tab's new title."}}},{"$ref": "Tab","name": "tab","description": "Gives the state of the tab that was updated."}]},{"name": "onMoved","type": "function","description": "Fired when a tab is moved within a window. Only one move event is fired, representing the tab the user directly moved. Move events are not fired for the other tabs that must move in response to the manually-moved tab. This event is not fired when a tab is moved between windows; for details, see $(ref:tabs.onDetached).","parameters": [{"type": "integer", "name": "tabId", "minimum": 0},{"type": "object","name": "moveInfo","properties": {"windowId": {"type": "integer", "minimum": 0},"fromIndex": {"type": "integer", "minimum": 0},"toIndex": {"type": "integer", "minimum": 0}}}]},{"name": "onSelectionChanged","deprecated": "Please use $(ref:tabs.onActivated).","type": "function","description": "Fires when the selected tab in a window changes.","parameters": [{"type": "integer","name": "tabId","minimum": 0,"description": "The ID of the tab that has become active."},{"type": "object","name": "selectInfo","properties": {"windowId": {"type": "integer","minimum": 0,"description": "The ID of the window the selected tab changed inside of."}}}]},{"name": "onActiveChanged","deprecated": "Please use $(ref:tabs.onActivated).","type": "function","description": "Fires when the selected tab in a window changes. Note that the tab's URL may not be set at the time this event fired, but you can listen to $(ref:tabs.onUpdated) events so as to be notified when a URL is set.","parameters": [{"type": "integer","name": "tabId","minimum": 0,"description": "The ID of the tab that has become active."},{"type": "object","name": "selectInfo","properties": {"windowId": {"type": "integer","minimum": 0,"description": "The ID of the window the selected tab changed inside of."}}}]},{"name": "onActivated","type": "function","description": "Fires when the active tab in a window changes. Note that the tab's URL may not be set at the time this event fired, but you can listen to onUpdated events so as to be notified when a URL is set.","parameters": [{"type": "object","name": "activeInfo","properties": {"tabId": {"type": "integer","minimum": 0,"description": "The ID of the tab that has become active."},"windowId": {"type": "integer","minimum": 0,"description": "The ID of the window the active tab changed inside of."}}}]},{"name": "onHighlightChanged","deprecated": "Please use $(ref:tabs.onHighlighted).","type": "function","description": "Fired when the highlighted or selected tabs in a window changes.","parameters": [{"type": "object","name": "selectInfo","properties": {"windowId": {"type": "integer","minimum": 0,"description": "The window whose tabs changed."},"tabIds": {"type": "array","name": "tabIds","items": {"type": "integer", "minimum": 0},"description": "All highlighted tabs in the window."}}}]},{"name": "onHighlighted","type": "function","description": "Fired when the highlighted or selected tabs in a window changes.","parameters": [{"type": "object","name": "highlightInfo","properties": {"windowId": {"type": "integer","minimum": 0,"description": "The window whose tabs changed."},"tabIds": {"type": "array","name": "tabIds","items": {"type": "integer", "minimum": 0},"description": "All highlighted tabs in the window."}}}]},{"name": "onDetached","type": "function","description": "Fired when a tab is detached from a window; for example, because it was moved between windows.","parameters": [{"type": "integer", "name": "tabId", "minimum": 0},{"type": "object","name": "detachInfo","properties": {"oldWindowId": {"type": "integer", "minimum": 0},"oldPosition": {"type": "integer", "minimum": 0}}}]},{"name": "onAttached","type": "function","description": "Fired when a tab is attached to a window; for example, because it was moved between windows.","parameters": [{"type": "integer", "name": "tabId", "minimum": 0},{"type": "object","name": "attachInfo","properties": {"newWindowId": {"type": "integer", "minimum": 0},"newPosition": {"type": "integer", "minimum": 0}}}]},{"name": "onRemoved","type": "function","description": "Fired when a tab is closed.","parameters": [{"type": "integer", "name": "tabId", "minimum": 0},{"type": "object","name": "removeInfo","properties": {"windowId": {"type": "integer", "minimum": 0, "description": "The window whose tab is closed." },"isWindowClosing": {"type": "boolean", "description": "True when the tab was closed because its parent window was closed." }}}]},{"name": "onReplaced","type": "function","description": "Fired when a tab is replaced with another tab due to prerendering or instant.","parameters": [{"type": "integer", "name": "addedTabId", "minimum": 0},{"type": "integer", "name": "removedTabId", "minimum": 0}]},{"name": "onZoomChange","type": "function","description": "Fired when a tab is zoomed.","parameters": [{"type": "object","name": "ZoomChangeInfo","properties": {"tabId": {"type": "integer", "minimum": 0},"oldZoomFactor": {"type": "number"},"newZoomFactor": {"type": "number"},"zoomSettings": {"$ref": "ZoomSettings"}}}]}]}
]

2、tabs.json 自动生成c++:

// GENERATED FROM THE API DEFINITION IN

//   chrome/common/extensions/api/tabs.json

// by tools/json_schema_compiler.

// DO NOT EDIT.

out\Debug\gen\chrome\common\extensions\api\tabs.h

out\Debug\gen\chrome\common\extensions\api\tabs.cc

3、chrome.tabs api接口 c++:

chrome\browser\extensions\api\tabs\tabs_api.h

chrome\browser\extensions\api\tabs\tabs_api.cc

namespace extensions {// Converts a ZoomMode to its ZoomSettings representation.
void ZoomModeToZoomSettings(zoom::ZoomController::ZoomMode zoom_mode,api::tabs::ZoomSettings* zoom_settings);// Windows
class WindowsGetFunction : public ExtensionFunction {~WindowsGetFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("windows.get", WINDOWS_GET)
};
class WindowsGetCurrentFunction : public ExtensionFunction {~WindowsGetCurrentFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("windows.getCurrent", WINDOWS_GETCURRENT)
};
class WindowsGetLastFocusedFunction : public ExtensionFunction {~WindowsGetLastFocusedFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("windows.getLastFocused", WINDOWS_GETLASTFOCUSED)
};
class WindowsGetAllFunction : public ExtensionFunction {~WindowsGetAllFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("windows.getAll", WINDOWS_GETALL)
};
class WindowsCreateFunction : public ExtensionFunction {~WindowsCreateFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("windows.create", WINDOWS_CREATE)
};
class WindowsUpdateFunction : public ExtensionFunction {~WindowsUpdateFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("windows.update", WINDOWS_UPDATE)
};
class WindowsRemoveFunction : public ExtensionFunction {~WindowsRemoveFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("windows.remove", WINDOWS_REMOVE)
};// Tabs
class TabsGetFunction : public ExtensionFunction {~TabsGetFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("tabs.get", TABS_GET)
};
class TabsGetCurrentFunction : public ExtensionFunction {~TabsGetCurrentFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("tabs.getCurrent", TABS_GETCURRENT)
};
class TabsGetSelectedFunction : public ExtensionFunction {~TabsGetSelectedFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("tabs.getSelected", TABS_GETSELECTED)
};
class TabsGetAllInWindowFunction : public ExtensionFunction {~TabsGetAllInWindowFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("tabs.getAllInWindow", TABS_GETALLINWINDOW)
};
class TabsQueryFunction : public ExtensionFunction {~TabsQueryFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("tabs.query", TABS_QUERY)
};
class TabsCreateFunction : public ExtensionFunction {~TabsCreateFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("tabs.create", TABS_CREATE)
};
class TabsDuplicateFunction : public ExtensionFunction {~TabsDuplicateFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("tabs.duplicate", TABS_DUPLICATE)
};
class TabsHighlightFunction : public ExtensionFunction {~TabsHighlightFunction() override {}ResponseAction Run() override;bool HighlightTab(TabStripModel* tabstrip,ui::ListSelectionModel* selection,absl::optional<size_t>* active_index,int index,std::string* error);DECLARE_EXTENSION_FUNCTION("tabs.highlight", TABS_HIGHLIGHT)
};
class TabsUpdateFunction : public ExtensionFunction {public:TabsUpdateFunction();protected:~TabsUpdateFunction() override {}bool UpdateURL(const std::string& url,int tab_id,std::string* error);ResponseValue GetResult();raw_ptr<content::WebContents, DanglingUntriaged> web_contents_;private:ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("tabs.update", TABS_UPDATE)
};
class TabsMoveFunction : public ExtensionFunction {~TabsMoveFunction() override {}ResponseAction Run() override;bool MoveTab(int tab_id,int* new_index,base::Value::List& tab_values,const absl::optional<int>& window_id,std::string* error);DECLARE_EXTENSION_FUNCTION("tabs.move", TABS_MOVE)
};
class TabsReloadFunction : public ExtensionFunction {~TabsReloadFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("tabs.reload", TABS_RELOAD)
};
class TabsRemoveFunction : public ExtensionFunction {public:TabsRemoveFunction();void TabDestroyed();private:class WebContentsDestroyedObserver;~TabsRemoveFunction() override;ResponseAction Run() override;bool RemoveTab(int tab_id, std::string* error);int remaining_tabs_count_ = 0;bool triggered_all_tab_removals_ = false;std::vector<std::unique_ptr<WebContentsDestroyedObserver>>web_contents_destroyed_observers_;DECLARE_EXTENSION_FUNCTION("tabs.remove", TABS_REMOVE)
};
class TabsGroupFunction : public ExtensionFunction {~TabsGroupFunction() override = default;ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("tabs.group", TABS_GROUP)
};
class TabsUngroupFunction : public ExtensionFunction {~TabsUngroupFunction() override = default;ResponseAction Run() override;bool UngroupTab(int tab_id, std::string* error);DECLARE_EXTENSION_FUNCTION("tabs.ungroup", TABS_UNGROUP)
};
class TabsDetectLanguageFunction: public ExtensionFunction,public content::WebContentsObserver,public translate::TranslateDriver::LanguageDetectionObserver {private:~TabsDetectLanguageFunction() override {}ResponseAction Run() override;// content::WebContentsObserver:void NavigationEntryCommitted(const content::LoadCommittedDetails& load_details) override;void WebContentsDestroyed() override;// translate::TranslateDriver::LanguageDetectionObserver:void OnLanguageDetermined(const translate::LanguageDetectionDetails& details) override;// Resolves the API call with the detected |language|.void RespondWithLanguage(const std::string& language);// Indicates if this instance is observing the tabs' WebContents and the// ContentTranslateDriver, in which case the observers must be unregistered.bool is_observing_ = false;DECLARE_EXTENSION_FUNCTION("tabs.detectLanguage", TABS_DETECTLANGUAGE)
};class TabsCaptureVisibleTabFunction: public extensions::WebContentsCaptureClient,public ExtensionFunction {public:TabsCaptureVisibleTabFunction();TabsCaptureVisibleTabFunction(const TabsCaptureVisibleTabFunction&) = delete;TabsCaptureVisibleTabFunction& operator=(const TabsCaptureVisibleTabFunction&) = delete;static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);static void set_disable_throttling_for_tests(bool disable_throttling_for_test) {disable_throttling_for_test_ = disable_throttling_for_test;}// ExtensionFunction implementation.ResponseAction Run() override;void GetQuotaLimitHeuristics(QuotaLimitHeuristics* heuristics) const override;bool ShouldSkipQuotaLimiting() const override;protected:~TabsCaptureVisibleTabFunction() override {}private:ChromeExtensionFunctionDetails chrome_details_;content::WebContents* GetWebContentsForID(int window_id, std::string* error);// extensions::WebContentsCaptureClient:ScreenshotAccess GetScreenshotAccess(content::WebContents* web_contents) const override;bool ClientAllowsTransparency() override;void OnCaptureSuccess(const SkBitmap& bitmap) override;void OnCaptureFailure(CaptureResult result) override;void EncodeBitmapOnWorkerThread(scoped_refptr<base::TaskRunner> reply_task_runner,const SkBitmap& bitmap);void OnBitmapEncodedOnUIThread(bool success, std::string base64_result);private:DECLARE_EXTENSION_FUNCTION("tabs.captureVisibleTab", TABS_CAPTUREVISIBLETAB)static std::string CaptureResultToErrorMessage(CaptureResult result);static bool disable_throttling_for_test_;
};// Implement API calls tabs.executeScript, tabs.insertCSS, and tabs.removeCSS.
class ExecuteCodeInTabFunction : public ExecuteCodeFunction {public:ExecuteCodeInTabFunction();protected:~ExecuteCodeInTabFunction() override;// Initializes |execute_tab_id_| and |details_|.InitResult Init() override;bool ShouldInsertCSS() const override;bool ShouldRemoveCSS() const override;bool CanExecuteScriptOnPage(std::string* error) override;ScriptExecutor* GetScriptExecutor(std::string* error) override;bool IsWebView() const override;const GURL& GetWebViewSrc() const override;private:const ChromeExtensionFunctionDetails chrome_details_;// Id of tab which executes code.int execute_tab_id_;
};class TabsExecuteScriptFunction : public ExecuteCodeInTabFunction {private:~TabsExecuteScriptFunction() override {}DECLARE_EXTENSION_FUNCTION("tabs.executeScript", TABS_EXECUTESCRIPT)
};class TabsInsertCSSFunction : public ExecuteCodeInTabFunction {private:~TabsInsertCSSFunction() override {}bool ShouldInsertCSS() const override;DECLARE_EXTENSION_FUNCTION("tabs.insertCSS", TABS_INSERTCSS)
};// TODO(https://crrev.com/c/608854): When a file URL is passed, this will do
// more work than needed: since the key is created based on the file URL in
// that case, we don't actually need to
//
// a) load the file or
// b) localize it
//
// ... hence, it could just go straight to the ScriptExecutor.
class TabsRemoveCSSFunction : public ExecuteCodeInTabFunction {private:~TabsRemoveCSSFunction() override {}bool ShouldRemoveCSS() const override;DECLARE_EXTENSION_FUNCTION("tabs.removeCSS", TABS_REMOVECSS)
};class TabsSetZoomFunction : public ExtensionFunction {private:~TabsSetZoomFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("tabs.setZoom", TABS_SETZOOM)
};class TabsGetZoomFunction : public ExtensionFunction {private:~TabsGetZoomFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("tabs.getZoom", TABS_GETZOOM)
};class TabsSetZoomSettingsFunction : public ExtensionFunction {private:~TabsSetZoomSettingsFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("tabs.setZoomSettings", TABS_SETZOOMSETTINGS)
};class TabsGetZoomSettingsFunction : public ExtensionFunction {private:~TabsGetZoomSettingsFunction() override {}ResponseAction Run() override;DECLARE_EXTENSION_FUNCTION("tabs.getZoomSettings", TABS_GETZOOMSETTINGS)
};class TabsDiscardFunction : public ExtensionFunction {public:DECLARE_EXTENSION_FUNCTION("tabs.discard", TABS_DISCARD)TabsDiscardFunction();TabsDiscardFunction(const TabsDiscardFunction&) = delete;TabsDiscardFunction& operator=(const TabsDiscardFunction&) = delete;private:~TabsDiscardFunction() override;// ExtensionFunction:ExtensionFunction::ResponseAction Run() override;
};class TabsGoForwardFunction : public ExtensionFunction {public:DECLARE_EXTENSION_FUNCTION("tabs.goForward", TABS_GOFORWARD)TabsGoForwardFunction() {}TabsGoForwardFunction(const TabsGoForwardFunction&) = delete;TabsGoForwardFunction& operator=(const TabsGoForwardFunction&) = delete;private:~TabsGoForwardFunction() override {}// ExtensionFunction:ExtensionFunction::ResponseAction Run() override;
};class TabsGoBackFunction : public ExtensionFunction {public:DECLARE_EXTENSION_FUNCTION("tabs.goBack", TABS_GOBACK)TabsGoBackFunction() {}TabsGoBackFunction(const TabsGoBackFunction&) = delete;TabsGoBackFunction& operator=(const TabsGoBackFunction&) = delete;private:~TabsGoBackFunction() override {}// ExtensionFunction:ExtensionFunction::ResponseAction Run() override;
};}  // namespace extensions

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/60443.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

vuepress+vdoing主题搭建自己的知识管理库

在github上建2个仓库 仓库1&#xff0c;文档源文件&#xff08;markdown&#xff09;&#xff0c;可以是私有或公有仓库。 仓库2&#xff0c;build生成的文件&#xff08;发布为github pages&#xff09;&#xff0c;公有仓库。 克隆模板 https://github.com/xugaoyi/vdoing…

开源项目推荐——OpenDroneMap无人机影像数据处理

实景三维作为GIS最火的课题&#xff0c;最近在想做一套自己的三维构建工具&#xff0c;考察了几个开源项目&#xff0c;把自己的搜索过程用csdn记录下来&#xff0c;希望也能帮助到各位同仁。 OpenDroneMap&#xff08;ODM&#xff09;是一个开源项目&#xff0c;旨在处理无人…

深入浅出《钉钉AI》产品体验报告

1. 引言 随着人工智能技术的迅猛发展&#xff0c;企业协同办公领域迎来了新的变革。钉钉作为阿里巴巴集团旗下的企业级通讯与协同办公平台&#xff0c;推出了钉钉AI助理&#xff0c;旨在提高工作效率&#xff0c;优化用户体验。本报告将对钉钉AI助理进行全面的产品体验分析&am…

夹耳开放式耳机好用吗?夹耳开放式耳机推荐

夹耳式耳机作为开放式耳机的一种&#xff0c;在最近几年里深受大家欢迎。它能够受到大家欢迎的原因主要是其不入耳的特性&#xff0c;既有助于保护听力健康&#xff0c;又能让人尽情享受极致的音乐体验。不过&#xff0c;很多小伙伴不知道夹耳式耳机到底好不好用&#xff1f;夹…

opencv(c++)----图像的读取以及显示

opencv(c)----图像的读取以及显示 imread: 作用&#xff1a;读取图像文件并将其加载到 Mat 对象中。参数&#xff1a; 第一个参数是文件路径&#xff0c;可以是相对路径或绝对路径。第二个参数是读取标志&#xff0c;比如 IMREAD_COLOR 表示以彩色模式读取图像。 返回值&#x…

SwiftUI-基础入门

开发OS X 图形应用界面时有三种实现方式&#xff1a;XIB、Storyboard、SwiftUI。Storyboard基于XIB做了优化&#xff0c;但XIB基本被放弃了&#xff0c;而SwiftUI是苹果公司后来开发的一套编程语言&#xff0c;用来平替Objective-C。虽然现在Swift 6 还是有些不完善的地方&…

string------1

文章目录 一. STL1.概念2.版本 二. string类2.1 为什么学习string类2. 标准库中的string类2.2.1 构造&#xff08;7个&#xff09;2.2.2 对string类对象进行“访问和修改”&#xff08;1&#xff09;operator[]&#xff08;2&#xff09;迭代器1.迭代器的使用2.迭代器的价值&am…

css-50 Projects in 50 Days(3)

html <!DOCTYPE html> <html lang"en"><head><meta charset"UTF-8"><meta name"viewport" content"widthdevice-width, initial-scale1.0"><title>旋转页面</title><link rel"sty…

【线性代数\矩阵论】矩阵逆引理证明、应用

矩阵逆引理证明、应用 矩阵求逆引理要解决的问题是&#xff1a;减少矩阵求逆的计算量。已知一个矩阵 A A A及其逆矩阵 A − 1 A^{-1} A−1&#xff0c;当矩阵产生了变化时&#xff0c;例如增加一个扰动 P P P&#xff0c;能不能根据已知的逆矩阵 A − 1 A^{-1} A−1&#xff0c…

1111111111待修改--大流量分析(三)-BUUCTF

总结摘要 题目来来源URL https://buuoj.cn/challenges#%E5%A4%A7%E6%B5%81%E9%87%8F%E5%88%86%E6%9E%90%EF%BC%88%E4%B8%89%EF%BC%89 答题过程 这道题是看大佬写着说查找phpinfo&#xff0c;我现在也不知道为什么能够一下子就定位到这里了 这里先按照phpinfo进行&#xff…

OCRSpace申请free api流程

0.OCRSpace概述 OCR.Space是一款功能强大的在线光学字符识别&#xff08;OCR&#xff09;工具。 格式与语言支持广泛&#xff1a;支持多种图片格式&#xff0c;如 JPG、PNG、GIF、PDF 等作为输入。在语言方面&#xff0c;它支持英语、中文、法语、德语等20多种语言的文字识别…

UVC 输出视频格式修改和windows下数据分析

文章目录 前言一、UVC MJPEG视频帧描述符1.MJPG视频帧格式示例 二、UVC YUV2、NV12、M420、I420无压缩视频帧描述符GUID1.如YUV2数据参数初始为: 三、UVC Windows下UVC摄像头数据分析总结 前言 提示&#xff1a;这里可以添加本文要记录的大概内容&#xff1a; 项目需要&#…

C语言 | Leetcode C语言题解之第552题学生出勤记录II

题目&#xff1a; 题解&#xff1a; const int MOD 1000000007;struct Matrix {long mat[6][6];int row, col; };struct Matrix multiply(struct Matrix a, struct Matrix b) {int rows a.row, columns b.col, temp b.row;struct Matrix c;memset(c.mat, 0, sizeof(c.mat)…

【Linux系统编程】第四十六弹---线程同步与生产消费模型深度解析

✨个人主页&#xff1a; 熬夜学编程的小林 &#x1f497;系列专栏&#xff1a; 【C语言详解】 【数据结构详解】【C详解】【Linux系统编程】 目录 1、Linux线程同步 1.1、同步概念与竞态条件 1.2、条件变量 1.2.1、认识条件变量接口 1.2.2、举例子认识条件变量 1.2.3、…

ML 系列:第 21 节 — 离散概率分布(二项分布)

一、说明 二项分布描述了在固定数量的独立伯努利试验中一定数量的成功的概率&#xff0c;其中每个试验只有两种可能的结果&#xff08;通常标记为成功和失败&#xff09;。 二、探讨伯努利模型 例如&#xff0c;假设您正在抛一枚公平的硬币 &#xff08;其中正面成功&#xff…

godot--自定义边框/选中时样式 StyleBoxTexture

前提知识&#xff1a; stylebox就像一个贴图&#xff0c;把图案贴到控件是。多个stylebox同时生效的话&#xff0c;那当然也有层级之分&#xff0c;上层覆盖下层&#xff08;可以设置透明度来显示下层&#xff09; 关于主题的概念&#xff1a; godot——主题、Theme、StyleB…

PCB+SMT线上报价系统+PCB生产ERP系统自动化拼板模块升级

PCB生产ERP系统的智能拼版技术&#xff0c;是基于PCB前端报价系统获取到的用户或市场人员已录入系统的板子尺寸及set参数等&#xff0c;按照最优原则或利用率最大化原则自动进行计算并输出拼版样式图和板材利用率&#xff0c;提高工程人员效率&#xff0c;减少板材的浪费。覆铜…

去中心化联邦学习与TinyML联合调查:群学习简介

中英文论文标题&#xff1a; 英文标题&#xff1a;A Joint Survey in Decentralized Federated Learning and TinyML: A Brief Introduction to Swarm Learning中文标题&#xff1a;去中心化联邦学习与TinyML联合调查&#xff1a;群学习简介 作者信息&#xff1a; Evangelia…

亚马逊正准备推出其最新的人工智能芯片

每周跟踪AI热点新闻动向和震撼发展 想要探索生成式人工智能的前沿进展吗&#xff1f;订阅我们的简报&#xff0c;深入解析最新的技术突破、实际应用案例和未来的趋势。与全球数同行一同&#xff0c;从行业内部的深度分析和实用指南中受益。不要错过这个机会&#xff0c;成为AI领…

【学习笔记】数据结构(七)

图 文章目录 图7.1 图的定义和术语7.2 图的存储结构7.2.1 数组表示法 - 邻接矩阵&#xff08;Adjacency Matrix)7.2.2 邻接表 -&#xff08;链式&#xff09;表示法(Adjacency List&#xff09;7.2.3 十字链表(Orthogonal List)7.2.4 邻接多重表(Adjacent MultiList) 7.3 图的遍…