回答

0

使用AjaxWebsocket權限,Nativemessaging(您將需要nativeMessaging許可代替),或任何其他通信方式交換分機和本地服務器之間的數據

以下代碼發送一個簡單的http獲取請求並輸出響應。

您可能還想使用Fetch API而不是Ajax,這取決於您的需要。

的manifest.json

{ 
    ... 
    "permissions": [ 
     "http://localhost/sample" 
    ] 
    ... 
} 

background.js

var xhr = new XMLHttpRequest(); 
xhr.onload = function() { 
    console.log(xhr.responsetText); 
}; 
xhr.open('GET', 'http://localhost/sample'); 
xhr.send();