Files
rfd-affiliate-stripper/extensions/chrome/background.js
2023-04-06 23:02:53 -04:00

19 lines
409 B
JavaScript

function updateRedirects() {
var URL =
"https://raw.githubusercontent.com/davegallant/rfd-redirect-stripper/main/redirects.json";
fetch(URL)
.then((res) => res.json())
.then((res) => {
chrome.storage.local.set({
"rfd-redirects": res,
});
});
}
chrome.runtime.onInstalled.addListener(() => {
updateRedirects();
});
setInterval(updateRedirects, 1 * 60 * 60 * 1000);