Drupal QA Notifier
Provides alerts for Drupal QA tests
什么是Drupal QA Notifier?
Drupal QA Notifier是由justafish开发的Chrome扩展程序,该扩展的主要功能是“Provides alerts for Drupal QA tests”。
扩展截图
下载Drupal QA Notifier扩展crx文件
下载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\/" ] } |