Drupal QA Notifier
Provides alerts for Drupal QA tests
ما هو Drupal QA Notifier؟
Drupal QA Notifier هو إضافة Chrome تم تطويرها بواسطة justafish، والميزة الرئيسية لها هي "Provides alerts for Drupal QA tests".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Drupal QA Notifier
قم بتنزيل ملفات الامتداد Drupal QA Notifier بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allows you to subscribe to a test on Drupal.org and receive a desktop notification upon it's completion.
معلومات أساسية عن التمديد
الاسم | Drupal QA Notifier |
ID | fcgjigcnkbhpjdhimnhlieoplnpoojhi |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/drupal-qa-notifier/fcgjigcnkbhpjdhimnhlieoplnpoojhi |
الوصف | Provides alerts for Drupal QA tests |
حجم الملف | 62.78 KB |
عدد التثبيتات | 65 |
النسخة الحالية | 0.0.5 |
آخر تحديث | 2014-07-30 |
تاريخ النشر | 2014-07-30 |
تقييم | 5.00/5 مجموع تقييمات 5 |
المطور | justafish |
نوع الدفع | free |
اللغات المدعومة | 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\/" ] } |