Drupal QA Notifier
Provides alerts for Drupal QA tests
Vad är Drupal QA Notifier?
Drupal QA Notifier är en Chrome-tillägg utvecklad av justafish, och dess huvudfunktion är "Provides alerts for Drupal QA tests".
Tilläggsskärmbilder
Ladda ner Drupal QA Notifier-förlängningens CRX-fil
Ladda ner Drupal QA Notifier-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension allows you to subscribe to a test on Drupal.org and receive a desktop notification upon it's completion. Grundläggande Information om Tillägg
| Namn | |
| ID | fcgjigcnkbhpjdhimnhlieoplnpoojhi |
| Officiell webbadress | https://chromewebstore.google.com/detail/drupal-qa-notifier/fcgjigcnkbhpjdhimnhlieoplnpoojhi |
| Beskrivning | Provides alerts for Drupal QA tests |
| Filstorlek | 62.78 KB |
| Antal Installationer | 65 |
| Aktuell Version | 0.0.5 |
| Senast Uppdaterad | 2014-07-30 |
| Publiceringsdatum | 2014-07-30 |
| Betyg | 5.00/5 Totalt 5 Betyg |
| Utvecklare | justafish |
| Betalningssätt | free |
| Stödda Språk | 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\/"
]
} | |