Drupal QA Notifier

Provides alerts for Drupal QA tests

Drupal QA Notifierとは何ですか?

Drupal QA Notifierはjustafishによって開発されたChromeの拡張機能で、その主な機能は「Provides alerts for Drupal QA tests」です。

拡張機能のスクリーンショット

screenshot

Drupal QA Notifier拡張機能のCRXファイルをダウンロード

Drupal QA Notifier拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Drupal QA Notifier Drupal QA Notifier
ID fcgjigcnkbhpjdhimnhlieoplnpoojhi
公式URL https://chromewebstore.google.com/detail/drupal-qa-notifier/fcgjigcnkbhpjdhimnhlieoplnpoojhi
説明 Provides alerts for Drupal QA tests
ファイルサイズ 62.78 KB
インストール数 65
現在のバージョン 0.0.5
最終更新日 2014-07-30
公開日 2014-07-30
評価 5.00/5 合計 5 レビュー
開発者 justafish
支払い方法 free
対応言語 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\/"
    ]
}