Drupal QA Notifier
Provides alerts for Drupal QA tests
Co to jest Drupal QA Notifier?
Drupal QA Notifier to rozszerzenie Chrome opracowane przez justafish, a jego główną funkcją jest „Provides alerts for Drupal QA tests”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Drupal QA Notifier
Pobierz pliki rozszerzeń Drupal QA Notifier w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension allows you to subscribe to a test on Drupal.org and receive a desktop notification upon it's completion. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | fcgjigcnkbhpjdhimnhlieoplnpoojhi |
| Oficjalny URL | https://chromewebstore.google.com/detail/drupal-qa-notifier/fcgjigcnkbhpjdhimnhlieoplnpoojhi |
| Opis | Provides alerts for Drupal QA tests |
| Rozmiar pliku | 62.78 KB |
| Liczba instalacji | 65 |
| Aktualna Wersja | 0.0.5 |
| Ostatnia Aktualizacja | 2014-07-30 |
| Data Publikacji | 2014-07-30 |
| Ocena | 5.00/5 Łącznie 5 Oceny |
| Deweloper | justafish |
| Typ Płatności | free |
| Obsługiwane Języki | 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\/"
]
} | |