chrome.system.network

說明

使用 chrome.system.network API。

權限

system.network

類型

NetworkInterface

屬性

  • 地址

    字串

    可用的 IPv4/6 位址。

  • 名稱

    字串

    轉接器的基礎名稱。*nix 通常會是「eth0」、「wlan0」等。

  • prefixLength

    數字

    前置字串長度

方法

getNetworkInterfaces()

Promise
chrome.system.network.getNetworkInterfaces(
  callback?: function,
)

擷取這個系統上的本機轉接器相關資訊。

參數

  • 回呼

    函式 選用

    callback 參數如下所示:

    (networkInterfaces: NetworkInterface[]) => void

    • networkInterfaces

      包含網路介面資訊的物件陣列。

傳回

  • Promise<NetworkInterface[]>

    Chrome 91 以上版本

    Promise 僅適用於 Manifest V3 及以上版本,其他平台需要使用回呼。