我希望在擴展彈出窗口中的某個在線音樂網站的某些內容通過ajax請求更改每次更改的內容,如下一首歌曲等。Chrome擴展 - 如何獲得當前選項卡的當前innerText由ajax請求更改
我怎樣才能在擴展彈出當前innerText
?
該網站每首歌開始後加載XMLHttpRequest
。如何在彈出窗口中獲得該URL /響應?
我試圖通過這段JavaScript代碼,但不能得到它:
var xhr = new XMLHttpRequest();
xhr.open('GET','https://example.com/',true);
xhr.onreadystatechange = function() {
if (xhr.readystate == 4 && xhr.status == 200) {
alert(xhr.responseText);
}
else
alert(xhr.status);
}
xhr.send();