github+travis

Display build status next to the project name on github.

What is github+travis?

github+travis is a Chrome extension developed by Tomas Carnecky, and its main feature is "Display build status next to the project name on github.".

Extension Screenshots

screenshot
screenshot

Download github+travis Extension CRX File

Download github+travis 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

                        Displays the travis-ci build status icon next to the project name on github. When you click the icon it will take you right to the project page on travis-ci.org. Yes, that's all it does.                    

Extension Basic Information

Name github+travis github+travis
ID klbmicjanlggbmanmpneloekhajhhbfb
Official URL https://chrome.google.com/webstore/detail/github+travis/klbmicjanlggbmanmpneloekhajhhbfb
Description Display build status next to the project name on github.
File Size 11.49 KB
Installation Count 124
Current Version 11
Last Updated 2015-05-09
Publish Date 2015-05-09
Rating 3.47/5 Total 15 Ratings
Developer Tomas Carnecky
Payment Type free
Extension Website https://caurea.org/2011/09/25/github-meets-travis-ci.html
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "11",
    "name": "github+travis",
    "description": "Display build status next to the project name on github.",
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_idle"
        }
    ]
}