Drupal QA Notifier

Provides alerts for Drupal QA tests

Drupal QA Notifier क्या है?

Drupal QA Notifier justafish द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides alerts for Drupal QA tests"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Drupal QA Notifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/"
    ]
}