mirror of
https://github.com/obsqrbtz/goose-highlighter.git
synced 2026-04-09 12:37:48 +03:00
feat: add websites to exception list
This commit is contained in:
@@ -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: [] });
|
||||
}
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user