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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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\/" ] } |