Drupal QA Notifier
Provides alerts for Drupal QA tests
Was ist Drupal QA Notifier?
Drupal QA Notifier ist eine Chrome-Erweiterung, die von justafish entwickelt wurde, und ihr Hauptmerkmal ist "Provides alerts for Drupal QA tests".
Erweiterungsscreenshots
Drupal QA Notifier-Erweiterungs-CRX-Datei herunterladen
Laden Sie Drupal QA Notifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension allows you to subscribe to a test on Drupal.org and receive a desktop notification upon it's completion.
Grundlegende Informationen zur Erweiterung
Name | Drupal QA Notifier |
ID | fcgjigcnkbhpjdhimnhlieoplnpoojhi |
Offizielle URL | https://chromewebstore.google.com/detail/drupal-qa-notifier/fcgjigcnkbhpjdhimnhlieoplnpoojhi |
Beschreibung | Provides alerts for Drupal QA tests |
Dateigröße | 62.78 KB |
Installationsanzahl | 65 |
Aktuelle Version | 0.0.5 |
Letztes Update | 2014-07-30 |
Veröffentlichungsdatum | 2014-07-30 |
Bewertung | 5.00/5 Insgesamt 5 Bewertungen |
Entwickler | justafish |
Zahlungsart | free |
Unterstützte Sprachen | 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\/" ] } |