GitHub Inline Log Viewer

View CircleCI/Azure/Jenkins Logs directly on GitHub

什么是GitHub Inline Log Viewer?

GitHub Inline Log Viewer是由Meta开发的Chrome扩展程序,该扩展的主要功能是“View CircleCI/Azure/Jenkins Logs directly on GitHub”。

扩展截图

screenshot

下载GitHub Inline Log Viewer扩展crx文件

下载GitHub Inline Log Viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension allows you to view logs from your continuous integration inline on GitHub. To view logs, you can click a build status item on the bottom of a Pull Request page. The logs will then be downloaded and shown on the page.

To set up the extension, follow the instructions on the settings page to add the relevant OAuth tokens so the extension can consult the CircleCI API.                    

扩展基本信息

名称 GitHub Inline Log Viewer GitHub Inline Log Viewer
ID nfbhlogkeldgllnlpodhgidcooebmaea
官方URL https://chromewebstore.google.com/detail/github-inline-log-viewer/nfbhlogkeldgllnlpodhgidcooebmaea
简介 View CircleCI/Azure/Jenkins Logs directly on GitHub
文件大小 32.93 KB
安装次数 42
当前版本 3.0
更新时间 2020-03-12
上架时间 2020-03-11
评分 3.00/5 共1次评分
开发者 Meta
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Inline Log Viewer",
    "short_name": "GitHub Inline Log Viewer",
    "description": "View CircleCI\/Azure\/Jenkins Logs directly on GitHub",
    "version": "3.0",
    "author": "pytorch",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "remove_cors.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*"
            ],
            "js": [
                "lib.js",
                "scrollview.js",
                "azure.js",
                "github_checks.js",
                "unsupported.js",
                "jenkins.js",
                "circleci.js",
                "build_info.js",
                "build_logs.js"
            ],
            "css": [
                "widescreen.css"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/ci.pytorch.org\/jenkins\/*",
        "https:\/\/github.com\/*",
        "https:\/\/circleci.com\/*",
        "https:\/\/*.amazonaws.com\/"
    ]
}