summaryrefslogtreecommitdiff
path: root/common/browser.js
diff options
context:
space:
mode:
Diffstat (limited to 'common/browser.js')
-rw-r--r--common/browser.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/common/browser.js b/common/browser.js
deleted file mode 100644
index e50a121..0000000
--- a/common/browser.js
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- * Myext WebExtension API access normalization
- *
- * Copyright (C) 2021 Wojtek Kosior
- * Redistribution terms are gathered in the `copyright' file.
- */
-
-/*
- * This module normalizes access to WebExtension apis between
- * chrome-based and firefox-based browsers.
- */
-
-const is_mozilla = typeof window.browser === "object";
-const is_chrome = !is_mozilla;
-const browser = window[is_chrome ? "chrome" : "browser"];
-
-/*
- * EXPORTS_START
- * EXPORT browser
- * EXPORT is_chrome
- * EXPORT is_mozilla
- * EXPORTS_END
- */