diff --git a/browser/extensions/fxmonitor/manifest.json b/browser/extensions/fxmonitor/manifest.json new file mode 100644 index 000000000000..a5bf6cd7359c --- /dev/null +++ b/browser/extensions/fxmonitor/manifest.json @@ -0,0 +1,11 @@ +{ + "manifest_version": 2, + "name": "Firefox Monitor", + "version": "2.0", + "applications": { + "gecko": { + "id": "fxmonitor@mozilla.org", + "strict_min_version": "62.0" + } + } +} diff --git a/browser/extensions/fxmonitor/moz.build b/browser/extensions/fxmonitor/moz.build new file mode 100644 index 000000000000..eecb79cbaa65 --- /dev/null +++ b/browser/extensions/fxmonitor/moz.build @@ -0,0 +1,12 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +with Files("**"): + BUG_COMPONENT = ("Firefox", "Firefox Monitor") + +FINAL_TARGET_FILES.features['fxmonitor@mozilla.org'] += [ + 'manifest.json' +] diff --git a/browser/extensions/moz.build b/browser/extensions/moz.build index 66ac545f478c..dc177048ab8a 100644 --- a/browser/extensions/moz.build +++ b/browser/extensions/moz.build @@ -7,6 +7,7 @@ DIRS += [ 'aushelper', 'formautofill', + 'fxmonitor', 'onboarding', 'pdfjs', 'pocket',