From fbabf1d29a8a97d57d9609666c81701fe12979e1 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Tue, 19 Mar 2024 03:37:33 -0400 Subject: Update --- fig-frontend-client/extension/background.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 fig-frontend-client/extension/background.js (limited to 'fig-frontend-client/extension/background.js') diff --git a/fig-frontend-client/extension/background.js b/fig-frontend-client/extension/background.js new file mode 100644 index 0000000..a0f4c91 --- /dev/null +++ b/fig-frontend-client/extension/background.js @@ -0,0 +1,23 @@ +/* Retrieve any previously set cookie and send to content script */ + +function getActiveTab() { + return browser.tabs.query({active: true, currentWindow: true}); +} + +function cookieUpdate() { + getActiveTab().then((tabs) => { + // get any previously set cookie for the current tab + let gettingCookies = browser.cookies.get({ + url: tabs[0].url, + name: "name" + }); + gettingCookies.then((cookie) => { + browser.tabs.sendMessage(tabs[0].id, cookie.value); + }); + }); +} + +// update when the tab is updated +browser.tabs.onUpdated.addListener(cookieUpdate); +// update when the tab is activated +browser.tabs.onActivated.addListener(cookieUpdate); -- cgit v1.2.3