ci-chrome-notification
Send chome notifications when jenkins or hudson builds status has changed
What is ci-chrome-notification?
ci-chrome-notification is a Chrome extension developed by Damien GOUYETTE, and its main feature is "Send chome notifications when jenkins or hudson builds status has changed".
Extension Screenshots
Download ci-chrome-notification Extension CRX File
Download ci-chrome-notification extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension allows you to follow a part or all of the integration server's builds. Supports jenkins and hudson
Extension Basic Information
Name | |
ID | kbgdbodpeimjhldaelnhmmffkbdacbln |
Official URL | https://chrome.google.com/webstore/detail/ci-chrome-notification/kbgdbodpeimjhldaelnhmmffkbdacbln |
Description | Send chome notifications when jenkins or hudson builds status has changed |
File Size | 225 KB |
Installation Count | 43 |
Current Version | 0.5.0 |
Last Updated | 2013-09-19 |
Publish Date | 2013-09-19 |
Rating | 4.60/5 Total 5 Ratings |
Developer | Damien GOUYETTE |
Payment Type | free |
Extension Website | http://www.cestpasdur.com |
Help Page URL | https://github.com/dgouyette/ci-chrome-notification/issues |
Supported Languages | en |
manifest.json | |
{ "background": { "page": "background.htm" }, "content_scripts": [ { "js": [ "js\/jquery-1.8.3.min.js", "js\/functions.js", "js\/background.js", "js\/underscore-1.4.3.min.js" ], "matches": [ "http:\/\/jquery.com\/*" ] } ], "web_accessible_resources": [ "js\/jquery-1.8.3.min.js", "img\/health-00to19.png", "img\/health-00to19.png", "img\/health-20to39.png", "img\/health-40to59.png", "img\/health-60to79.png", "img\/health-80.png" ], "description": "Send chome notifications when jenkins or hudson builds status has changed", "browser_action": { "default_icon": "favicon.ico", "popup": "options.htm", "default_popup": "options.htm" }, "icons": { "128": "favicon.ico" }, "name": "ci-chrome-notification", "options_page": "options.htm", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "notifications" ], "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.5.0", "manifest_version": 2 } |