Extra GitHub PR Info

Edits to the GitHub UI to make it more informative

什麼是Extra GitHub PR Info?

Extra GitHub PR Info是由Meta開發的Chrome擴展程式,該擴展的主要功能是“Edits to the GitHub UI to make it more informative”。

擴展截圖

screenshot

下載Extra GitHub PR Info擴展crx文件

下載Extra GitHub PR Info擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A collection of GitHub quality of life improvements:

See https://github.com/driazati/github-extension for details                    

擴展基本資訊

名稱 Extra GitHub PR Info Extra GitHub PR Info
ID pianlbphbcjkcghlboepagpoilanigff
官方網址 https://chromewebstore.google.com/detail/extra-github-pr-info/pianlbphbcjkcghlboepagpoilanigff
簡介 Edits to the GitHub UI to make it more informative
檔案大小 38.37 KB
安裝次數 231
目前版本 1.8.3
更新時間 2021-09-30
上架時間 2020-03-11
開發者 Meta
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/driazati/github-extension
說明頁面URL https://github.com/driazati/github-extension
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extra GitHub PR Info",
    "short_name": "Extra GitHub PR Info",
    "description": "Edits to the GitHub UI to make it more informative",
    "version": "1.8.3",
    "author": "pytorch",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/pulls*",
                "*:\/\/github.com\/pulls*"
            ],
            "js": [
                "lib.js",
                "show_build_status.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "disable_pjax.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/pull\/*",
                "*:\/\/github.com\/*\/*",
                "*:\/\/github.com\/*\/*\/commits\/*"
            ],
            "js": [
                "lib.js",
                "unminimize_comments.js",
                "sort_signals.js",
                "remove_timeline_events.js",
                "expand_signals_box.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/pull\/*\/files"
            ],
            "js": [
                "lib.js",
                "reorder_code_reviews.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "remove_cors.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "https:\/\/github.com\/*"
    ]
}