SlackReview

SlackReview

Send a review request for the currently open PR to Slack, directly from GitHub

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SlackReview",
  "description": "Send a review request for the currently open PR to Slack, directly from GitHub",
  "version": "0.0.8",
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*/pull/*"
      ],
      "js": [
        "assets/js/jquery-2.1.0.min.js",
        "assets/js/github-button.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "https://github.com/*/pull/*",
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "web_accessible_resources": [
    "options.html"
  ],
  "icons": {
    "16": "assets/images/slackreview_16.png",
    "48": "assets/images/slackreview_48.png",
    "128": "assets/images/slackreview_128.png"
  },
  "manifest_version": 2
}