Github Travis Stat

Display travis-ci build status and time chart, with status icon next to the project name on github.

Github Travis Stat क्या है?

Github Travis Stat wsywj61 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display travis-ci build status and time chart, with status icon next to the project name on github."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Github Travis Stat एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This is an extension to display travis-ci status for repos in github. There is an interesting chart, which shows that recent 10 times build status and build duration changes.

该插件主要用于在github页面上显示对应仓库的travis-ci build状态,并使用图形化(图表)的形式展示近10次build的状态和时间变化。                    

एक्सटेंशन की मूल जानकारी

नाम Github Travis Stat Github Travis Stat
ID ekkfhiophiaakmeppcnkblpbbjlnlnmh
आधिकारिक URL https://chromewebstore.google.com/detail/github-travis-stat/ekkfhiophiaakmeppcnkblpbbjlnlnmh
विवरण Display travis-ci build status and time chart, with status icon next to the project name on github.
फ़ाइल का आकार 120 KB
स्थापना संख्या 46
वर्तमान संस्करण 2.1.6
अंतिम अपडेट 2018-03-08
प्रकाशन तिथि 2018-03-08
रेटिंग 4.29/5 कुल 7 रेटिंग्स
डेवलपर wsywj61
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Yaowenjie/travis-github-chrome-extension
सहायता पृष्ठ URL https://github.com/Yaowenjie/travis-github-chrome-extension/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "web_accessible_resources": [
        "travis-icon.png",
        "build-failing.svg",
        "build-success.svg",
        "build-unknown.svg"
    ],
    "version": "2.1.6",
    "name": "Github Travis Stat",
    "short_name": "build-stat",
    "description": "Display travis-ci build status and time chart, with status icon next to the project name on github.",
    "homepage_url": "https:\/\/github.com\/Yaowenjie\/travis-github-chrome-extension",
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "https:\/\/api.travis-ci.org\/"
    ],
    "content_security_policy": "script-src 'self' https:\/\/github.com; object-src 'self'",
    "content_scripts": [
        {
            "js": [
                "bundle.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_idle"
        }
    ]
}