You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
498 B
14 lines
498 B
/* 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()
|
|
|