This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pre-format manifest.json in a way AMO is happy with.
https://github.com/mozilla/addons-server/issues/17302 broke our privileged signature, the AMO team is working on a fix but this is a workaround.
- Loading branch information
Showing
1 changed file
with
18 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,27 +5,23 @@ | |
"name": "Mozilla Rally", | ||
"version": "1.3.2", | ||
"homepage_url": "https://github.com/mozilla-rally/rally-core-addon", | ||
|
||
"icons": { | ||
"48": "public/img/rally-favicon.svg", | ||
"96": "public/img/rally-favicon.svg" | ||
}, | ||
|
||
"applications": { | ||
"gecko": { | ||
"id": "[email protected]", | ||
"strict_min_version": "80.0a1" | ||
} | ||
}, | ||
|
||
"permissions": [ | ||
"management", | ||
"telemetry", | ||
"storage", | ||
"https://firefox.settings.services.mozilla.com/", | ||
"https://incoming.telemetry.mozilla.org/" | ||
], | ||
|
||
"telemetry": { | ||
"pioneer_id": true, | ||
"study_name": "rally-core", | ||
|
@@ -41,37 +37,44 @@ | |
} | ||
} | ||
}, | ||
|
||
"background": { | ||
"scripts": ["public/addon-build/background.js"] | ||
"scripts": [ | ||
"public/addon-build/background.js" | ||
] | ||
}, | ||
|
||
"content_scripts": [ | ||
{ | ||
"matches": ["https://rally.mozilla.org/*"], | ||
"js": ["public/addon-build/content-script.js"] | ||
"matches": [ | ||
"https://rally.mozilla.org/*" | ||
], | ||
"js": [ | ||
"public/addon-build/content-script.js" | ||
] | ||
} | ||
], | ||
|
||
"browser_action": { | ||
"browser_style": true, | ||
"default_icon": "public/img/rally-toolbar-icon.svg" | ||
}, | ||
|
||
"options_ui": { | ||
"page": "public/index.html", | ||
"open_in_tab": true | ||
}, | ||
|
||
"experiment_apis": { | ||
"firefoxPrivilegedApi": { | ||
"schema": "core-addon/FirefoxPrivilegedApi.schema.json", | ||
"parent": { | ||
"scopes": ["addon_parent"], | ||
"scopes": [ | ||
"addon_parent" | ||
], | ||
"script": "core-addon/FirefoxPrivilegedApi.js", | ||
"events": [], | ||
"paths": [["firefoxPrivilegedApi"]] | ||
"paths": [ | ||
[ | ||
"firefoxPrivilegedApi" | ||
] | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |