方法1: XMLHttpRequestを使用する方法function loadJSONFile(url, callback) {
var xhr = new XMLHttpRequest();
xhr.overrideMimeType("application/json");
xhr.open("GET", url, true);
xhr.onreadystatechange = function () {
if (xhr.readyState === 4 && xhr.status === 200) {
callback(JSON.pars>>More
Reactプロジェクトのセットアップ:
まず、Reactプロジェクトを作成します。ターミナルで以下のコマンドを実行します。npx create-react-app my-extension>>More
XMLHttpRequestを使用する方法:const xhr = new XMLHttpRequest();
xhr.overrideMimeType("application/json");
xhr.open('GET', chrome.extension.getURL('file.json'), true);
xhr.onreadystatechange = function () {
if (xhr.readyState === 4 && xhr.status === 200) {
const json = JSON.parse(xhr.responseText);
/>>More