aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/extension.js
blob: 4b670490f996ab9c93a3289ace76ba956a7bcefc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Extension.js
 *
 * A module for unifying browser differences in the WebExtension API.
 *
 * Initially implemented because Chrome hides all of their WebExtension API
 * behind a global `chrome` variable, but we'd like to start grooming
 * the code-base for cross-browser extension support.
 *
 * You can read more about the WebExtension API here:
 * https://developer.mozilla.org/en-US/Add-ons/WebExtensions
 */

const Extension = require('./extension-instance')
module.exports = new Extension()