Drupal QA Notifier
Provides alerts for Drupal QA tests
Qu'est-ce que Drupal QA Notifier ?
Drupal QA Notifier est une extension Chrome développée par justafish, et sa fonction principale est "Provides alerts for Drupal QA tests".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Drupal QA Notifier
Téléchargez les fichiers d'extension Drupal QA Notifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This extension allows you to subscribe to a test on Drupal.org and receive a desktop notification upon it's completion.
Informations de Base sur l'Extension
Nom | Drupal QA Notifier |
ID | fcgjigcnkbhpjdhimnhlieoplnpoojhi |
URL Officiel | https://chromewebstore.google.com/detail/drupal-qa-notifier/fcgjigcnkbhpjdhimnhlieoplnpoojhi |
Description | Provides alerts for Drupal QA tests |
Taille du Fichier | 62.78 KB |
Nombre d'Installations | 65 |
Version Actuelle | 0.0.5 |
Dernière Mise à Jour | 2014-07-30 |
Date de Publication | 2014-07-30 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | justafish |
Type de Paiement | free |
Langues Prises en Charge | 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\/" ] } |