manifest.jsonの中に
"matches": ["https://ranking.rakuten.co.jp/*"],
"js": ["test.js"]
test.jsは正しく呼び出されているのですがその中に以下を記述、
var xhr = new XMLHttpRequest();
xhr.open("GET","https://item.rakuten.co.jp/maruka-foods/domestic300/?s-id=top_normal_browsehist&xuseflg_ichiba01=10000218".true);
xhr.withCredentials = true;
xhr.responseType = "document";
xhr.send();
xhr.onreadystatechange = function () {
if (xhr.readyState == 4 && xhr.status == 200) {
alert("OK");
}
}
statusが404が帰ってくるのですが何かパラメータが足りないのでしょうか?
XMLHttpRequestで帰ってきたdocumentのidを指定してvalueを取得したいと思ってます。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/09 23:09