Drupal QA Notifier

Provides alerts for Drupal QA tests

Drupal QA Notifier là gì?

Drupal QA Notifier là một tiện ích mở rộng Chrome được phát triển bởi justafish, và tính năng chính của nó là "Provides alerts for Drupal QA tests".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Drupal QA Notifier

Tải xuống các tệp mở rộng Drupal QA Notifier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Drupal QA Notifier Drupal QA Notifier
ID fcgjigcnkbhpjdhimnhlieoplnpoojhi
URL Chính Thức https://chromewebstore.google.com/detail/drupal-qa-notifier/fcgjigcnkbhpjdhimnhlieoplnpoojhi
Mô tả Provides alerts for Drupal QA tests
Kích Thước Tệp 62.78 KB
Số Lần Cài Đặt 65
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2014-07-30
Ngày Phát Hành 2014-07-30
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển justafish
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}