first version of browser extension hireflow

This commit is contained in:
2026-05-04 14:37:21 +02:00
parent 613f0bda5f
commit e182f87cac
10 changed files with 724 additions and 0 deletions
@@ -0,0 +1,9 @@
const STORAGE_KEYS = ["recording", "recordingTabId"];
chrome.tabs.onRemoved.addListener((tabId) => {
chrome.storage.local.get(["recording", "recordingTabId"], (data) => {
if (data.recording && data.recordingTabId === tabId) {
chrome.storage.local.remove(STORAGE_KEYS);
}
});
});