Mighty GitHub PRs

Restyle Pull Request screen for easier navigation and more focused review sessions.

Mighty GitHub PRsとは何ですか?

Mighty GitHub PRsはadam.grafによって開発されたChromeの拡張機能で、その主な機能は「Restyle Pull Request screen for easier navigation and more focused review sessions.」です。

拡張機能のスクリーンショット

screenshot

Mighty GitHub PRs拡張機能のCRXファイルをダウンロード

Mighty GitHub PRs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This is an extension to restyle Pull Request screen for easier navigation and more focused review sessions in GitHub (public or any private/enterprise edition).

Main features:
- works on corporate enterprise domains, you just need to enable in the context menu of the extension in Chrome toolbar:
- shows file tree on the left hand side
- folders are collapsible
- folders are as concise as possible (if a folder containing on single folder it is merged with parent in visualization)
- deleted files are red and crossed through in file tree
- seen files become non-highlighted once seen
- only one single file's diff is shown if a file is selected from the tree
- large, visible Approve and Needs work buttons added ('Need work' button automatically adds a generic 'Please fix review items' comment.)
- clutter is reduced - elements on the top of the page is eliminated in the file navigation view to eliminate visual noise                    

拡張機能の基本情報

名前 Mighty GitHub PRs Mighty GitHub PRs
ID hopnfcjjghjpkfdiffabbpcpnhcpkceg
公式URL https://chromewebstore.google.com/detail/mighty-github-prs/hopnfcjjghjpkfdiffabbpcpnhcpkceg
説明 Restyle Pull Request screen for easier navigation and more focused review sessions.
ファイルサイズ 39.5 KB
インストール数 118
現在のバージョン 1.1.1
最終更新日 2021-03-29
公開日 2019-11-12
評価 5.00/5 合計 3 レビュー
開発者 adam.graf
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/netgrafe/mighty-github-prs
ヘルプページのURL https://github.com/netgrafe/mighty-github-prs
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mighty GitHub PRs",
    "version": "1.1.1",
    "description": "Restyle Pull Request screen for easier navigation and more focused review sessions.",
    "manifest_version": 2,
    "icons": {
        "48": "mighty-github-icon-48x48.png",
        "128": "mighty-github-icon-128x128.png",
        "192": "mighty-github-icon-192x192.png"
    },
    "browser_action": {
        "default_icon": {
            "48": "mighty-github-icon-48x48.png",
            "128": "mighty-github-icon-128x128.png",
            "192": "mighty-github-icon-192x192.png"
        }
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "*:\/\/*.github.com\/*"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "webext-permissions-events-polyfill.js",
            "webext-dynamic-content-scripts.js",
            "webext-domain-permission-toggle.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "css": [
                "pr-optimizer.css"
            ],
            "js": [
                "pr-optimizer.js"
            ]
        }
    ]
}