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
官方網址 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\/"
    ]
}