Drupal QA Notifier

Provides alerts for Drupal QA tests

What is Drupal QA Notifier?

Drupal QA Notifier is a Chrome extension developed by justafish, and its main feature is "Provides alerts for Drupal QA tests".

Extension Screenshots

screenshot

Download Drupal QA Notifier Extension CRX File

Download Drupal QA Notifier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension allows you to subscribe to a test on Drupal.org and receive a desktop notification upon it's completion.                    

Extension Basic Information

Name Drupal QA Notifier Drupal QA Notifier
ID fcgjigcnkbhpjdhimnhlieoplnpoojhi
Official URL https://chromewebstore.google.com/detail/drupal-qa-notifier/fcgjigcnkbhpjdhimnhlieoplnpoojhi
Description Provides alerts for Drupal QA tests
File Size 62.78 KB
Installation Count 65
Current Version 0.0.5
Last Updated 2014-07-30
Publish Date 2014-07-30
Rating 5.00/5 Total 5 Ratings
Developer justafish
Payment Type free
Supported Languages en-GB
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\/"
    ]
}