thunderbird-patch-review

Easy-to-use patch review interface for Thunderbird

Contribute: ~marcc/thunderbird-review-plugin@lists.sr.ht

git clone git://mccd.space/thunderbird-patch-review

manifest.json (1169B)

      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@coquand.email",
      9       "strict_min_version": "115.0"
     10     }
     11   },
     12   "background": {
     13     "scripts": ["background.js"]
     14   },
     15   "icons": {
     16     "16": "icons/review.svg",
     17     "32": "icons/review.svg",
     18     "48": "icons/review.svg",
     19     "96": "icons/review.svg"
     20   },
     21   "browser_action": {
     22     "default_title": "Review selected patches",
     23     "default_label": "Review",
     24     "default_icon": "icons/review.svg"
     25   },
     26   "options_ui": {
     27     "page": "options/options.html",
     28     "open_in_tab": false
     29   },
     30   "permissions": [
     31     "messagesRead",
     32     "accountsRead",
     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 }