0
我有一個網站'http://localhost/sample'。我需要調用擴展函數來回顯一個單詞並獲得響應。如何實現這樣的代碼,什麼是需要調用Chrome擴展功能並獲得響應
我有一個網站'http://localhost/sample'。我需要調用擴展函數來回顯一個單詞並獲得響應。如何實現這樣的代碼,什麼是需要調用Chrome擴展功能並獲得響應
使用Ajax,Websocket權限,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();