Gerrit for Gmail

Gerrit for Gmail

Extension for adding Gerrit integration to Gmail.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gerrit for Gmail",
  "short_name": "Gerrit for Gmail",
  "version": "0.4.5",
  "manifest_version": 2,
  "description": "Extension for adding Gerrit integration to Gmail.",
  "background": {
    "page": "background.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery-3.3.1.min.js",
        "js/underscore-min.js",
        "js/linkify.min.js",
        "js/linkify-string.min.js",
        "js/google-analytics-bundle.js",
        "js/gmgt.js"
      ],
      "css": [
        "css/gerrit.css"
      ],
      "matches": [
        "https://mail.google.com/*",
        "https://inbox.google.com/*"
      ]
    }
  ],
  "page_action": {
    "default_icon": "icons/gerrit.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "cookies",
    "tabs",
    "storage",
    "http://*/",
    "https://*/"
  ],
  "web_accessible_resources": [
    "icons/gerrit-big.png",
    "icons/gerrit.png",
    "icons/add-comment.png",
    "icons/help.png"
  ]
}