Drupal QA Notifier

Provides alerts for Drupal QA tests

Apa itu Drupal QA Notifier?

Drupal QA Notifier adalah ekstensi Chrome yang dikembangkan oleh justafish, dan fitur utamanya adalah "Provides alerts for Drupal QA tests".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Drupal QA Notifier

Unduh file ekstensi Drupal QA Notifier dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Drupal QA Notifier Drupal QA Notifier
ID fcgjigcnkbhpjdhimnhlieoplnpoojhi
URL Resmi https://chromewebstore.google.com/detail/drupal-qa-notifier/fcgjigcnkbhpjdhimnhlieoplnpoojhi
Deskripsi Provides alerts for Drupal QA tests
Ukuran File 62.78 KB
Jumlah Instalasi 65
Versi Saat Ini 0.0.5
Terakhir Diperbarui 2014-07-30
Tanggal Publikasi 2014-07-30
Penilaian 5.00/5 Total 5 Penilaian
Pengembang justafish
Tipe Pembayaran free
Bahasa yang Didukung 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\/"
    ]
}