browser-ext/src/utils/extension.ts
Cooper Ransom 57b1df466f init
2024-04-25 14:16:30 -04:00

11 lines
254 B
TypeScript

export const isChrome = () => {
return chrome.runtime.getURL('').startsWith('chrome-extension://');
};
export const isFirefox = () => {
try {
return browser.runtime.getURL('').startsWith('moz-extension://');
} catch {
return false;
}
};