summaryrefslogtreecommitdiff
path: root/src/lib/UA.js
blob: 0a751a482899e368a5295351a4e355fe3ff0f1f9 (plain)
1
2
3
4
5
6
7
8
var UA = {
  isMozilla: document.URL.startsWith("moz-"),
}

if (!UA.isMozilla && typeof chrome === "object" && !chrome.tabs && typeof exportFunction === "undefined") {
  // content script shims
  window.exportFunction = () => {};
}