mirror of
https://github.com/arkorty/B.Tech-Project-III.git
synced 2026-04-19 12:41:48 +00:00
8 lines
239 B
JavaScript
8 lines
239 B
JavaScript
/**
|
|
* ThirdEye Meet — Service Worker (Manifest V3 background)
|
|
* Minimal: just keeps the extension alive and relays messages.
|
|
*/
|
|
chrome.runtime.onInstalled.addListener(() => {
|
|
console.log("[ThirdEye] Meet extension installed.");
|
|
});
|