thunderbird-patch-review
Simple email patch review tool for Thunderbird
git clone git://mccd.space/thunderbird-patch-review| Log | Files | Refs | README | LICENSE | Mail | Artifacts |
manifest.json (1183B)
1 {
2 "manifest_version": 2,
3 "name": "Patch Review",
4 "version": "0.1.0",
5 "description": "Review git patches sent by email: inline hunk comments, mailing-list style replies, and one-click apply to a local repository.",
6 "browser_specific_settings": {
7 "gecko": {
8 "id": "patchreview@mccd.space",
9 "strict_min_version": "115.0",
10 "strict_max_version": "153.*"
11 }
12 },
13 "background": {
14 "scripts": ["background.js"]
15 },
16 "icons": {
17 "16": "icons/review.svg",
18 "32": "icons/review.svg",
19 "48": "icons/review.svg",
20 "96": "icons/review.svg"
21 },
22 "browser_action": {
23 "default_title": "Review selected patches",
24 "default_label": "Review",
25 "default_icon": "icons/review.svg"
26 },
27 "options_ui": {
28 "page": "options/options.html",
29 "open_in_tab": false
30 },
31 "permissions": [
32 "messagesRead",
33 "storage",
34 "compose",
35 "compose.send",
36 "downloads",
37 "tabs"
38 ],
39 "experiment_apis": {
40 "patchHost": {
41 "schema": "api/patchHost/schema.json",
42 "parent": {
43 "scopes": ["addon_parent"],
44 "paths": [["patchHost"]],
45 "script": "api/patchHost/implementation.js"
46 }
47 }
48 }
49 }