tixcraft_bot/webdriver/Maxbot_1.0.0/background.js

13 lines
258 B
JavaScript

chrome.runtime.onInstalled.addListener(function(){
fetch("data/settings.json")
.then((resp) => resp.json())
.then((settings) =>
{
chrome.storage.local.set(
{
settings: settings
}
);
}
);
});