tixcraft_bot/webdriver/Maxbot_1.0.0/background.js

21 lines
453 B
JavaScript
Raw Normal View History

2024-01-01 15:58:30 +00:00
'use strict';
chrome.declarativeNetRequest.onRuleMatchedDebug.addListener((e) => {
const msg = `Navigation blocked to ${e.request.url} on tab ${e.request.tabId}.`;
//console.log(msg);
});
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
}
);
}
);
2024-01-01 15:58:30 +00:00
});