tixcraft_bot/webdriver/Maxbot_1.0.0/background.js

13 lines
258 B
JavaScript
Raw Normal View History

2023-12-31 18:40:47 +00:00
chrome.runtime.onInstalled.addListener(function(){
fetch("data/settings.json")
.then((resp) => resp.json())
.then((settings) =>
{
chrome.storage.local.set(
{
settings: settings
}
);
}
);
});