feat: add websites to exception list

This commit is contained in:
2025-10-07 14:18:23 +03:00
parent a1701a3504
commit 915add3a4c
21 changed files with 511 additions and 11 deletions

View File

@@ -7,4 +7,12 @@ chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
console.warn('Injection failed:', err);
});
}
});
chrome.runtime.onInstalled.addListener(() => {
chrome.storage.local.get(['exceptionsList'], (result) => {
if (!result.exceptionsList) {
chrome.storage.local.set({ exceptionsList: [] });
}
});
});