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
官方網址 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\/"
    ]
}