Drupal QA Notifier

Provides alerts for Drupal QA tests

Cos'è Drupal QA Notifier?

Drupal QA Notifier è un'estensione di Chrome sviluppata da justafish, e la sua funzione principale è "Provides alerts for Drupal QA tests".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Drupal QA Notifier

Scarica i file di estensione Drupal QA Notifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Drupal QA Notifier Drupal QA Notifier
ID fcgjigcnkbhpjdhimnhlieoplnpoojhi
URL Ufficiale https://chromewebstore.google.com/detail/drupal-qa-notifier/fcgjigcnkbhpjdhimnhlieoplnpoojhi
Descrizione Provides alerts for Drupal QA tests
Dimensione del File 62.78 KB
Conteggio Installazioni 65
Versione Corrente 0.0.5
Ultimo Aggiornamento 2014-07-30
Data di Pubblicazione 2014-07-30
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore justafish
Tipo di Pagamento free
Lingue Supportate 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\/"
    ]
}