Drupal QA Notifier
Provides alerts for Drupal QA tests
Wat is Drupal QA Notifier?
Drupal QA Notifier is een Chrome-extensie ontwikkeld door justafish, en de belangrijkste functie is "Provides alerts for Drupal QA tests".
Extensie Screenshots
Download het CRX-bestand van de extensie Drupal QA Notifier
Download Drupal QA Notifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension allows you to subscribe to a test on Drupal.org and receive a desktop notification upon it's completion.
Basisinformatie over de Extensie
Naam | Drupal QA Notifier |
ID | fcgjigcnkbhpjdhimnhlieoplnpoojhi |
Officiële URL | https://chromewebstore.google.com/detail/drupal-qa-notifier/fcgjigcnkbhpjdhimnhlieoplnpoojhi |
Beschrijving | Provides alerts for Drupal QA tests |
Bestandsgrootte | 62.78 KB |
Aantal Installaties | 65 |
Huidige Versie | 0.0.5 |
Laatst Bijgewerkt | 2014-07-30 |
Publicatiedatum | 2014-07-30 |
Beoordeling | 5.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | justafish |
Betalingswijze | free |
Ondersteunde Talen | 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\/" ] } |