Drupal QA Notifier

Provides alerts for Drupal QA tests

O que é Drupal QA Notifier?

Drupal QA Notifier é uma extensão do Chrome desenvolvida por justafish, e sua principal característica é "Provides alerts for Drupal QA tests".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Drupal QA Notifier

Baixe arquivos de extensão Drupal QA Notifier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Drupal QA Notifier Drupal QA Notifier
ID fcgjigcnkbhpjdhimnhlieoplnpoojhi
URL Oficial https://chromewebstore.google.com/detail/drupal-qa-notifier/fcgjigcnkbhpjdhimnhlieoplnpoojhi
Descrição Provides alerts for Drupal QA tests
Tamanho do Arquivo 62.78 KB
Contagem de Instalações 65
Versão Atual 0.0.5
Última Atualização 2014-07-30
Data de Publicação 2014-07-30
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor justafish
Tipo de Pagamento free
Idiomas Suportados 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\/"
    ]
}