Drupal QA Notifier

Provides alerts for Drupal QA tests

Hvad er Drupal QA Notifier?

Drupal QA Notifier er en Chrome-udvidelse udviklet af justafish, og dens hovedfunktion er "Provides alerts for Drupal QA tests".

Udvidelsesskærmbilleder

screenshot

Download Drupal QA Notifier-udvidelses-CRX-fil

Download Drupal QA Notifier-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Drupal QA Notifier Drupal QA Notifier
ID fcgjigcnkbhpjdhimnhlieoplnpoojhi
Officiel URL https://chromewebstore.google.com/detail/drupal-qa-notifier/fcgjigcnkbhpjdhimnhlieoplnpoojhi
Beskrivelse Provides alerts for Drupal QA tests
Filstørrelse 62.78 KB
Antal Installationer 65
Nuværende Version 0.0.5
Senest Opdateret 2014-07-30
Udgivelsesdato 2014-07-30
Bedømmelse 5.00/5 Samlet 5 Bedømmelser
Udvikler justafish
Betalingsmetode free
Understøttede Sprog 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\/"
    ]
}