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
公式URL 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
Eメール [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\/*"
    ]
}