Drupal QA Notifier
Provides alerts for Drupal QA tests
Что такое Drupal QA Notifier?
Drupal QA Notifier - это расширение Chrome, разработанное justafish, и его основная функция - "Provides alerts for Drupal QA tests".
Снимки экрана расширения
Скачать файл CRX расширения Drupal QA Notifier
Скачайте файлы расширений 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 |
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\/" ] } |