Drupal QA Notifier

Drupal QA Notifier

Provides alerts for Drupal QA tests

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Drupal QA Notifier",
  "version": "0.0.5",
  "description": "Provides alerts for Drupal QA tests",
  "author": "justafish",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.drupal.org/node/*",
        "https://qa.drupal.org/pifr/test/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "web_accessible_resources": [
    "48.png"
  ],
  "permissions": [
    "alarms",
    "notifications",
    "storage",
    "https://qa.drupal.org/"
  ]
}