GitHub Diff Explorer

The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests

GitHub Diff Explorerとは何ですか?

GitHub Diff Explorerはalexdodgeによって開発されたChromeの拡張機能で、その主な機能は「The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests」です。

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

screenshot

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

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

拡張機能の使用方法

                        This extension provides:
- Dark mode styles for all supported browsers
- More screen real estate with a full width view and resizable explorer
- Improved review management and organization with collapsible folder views
- Deep links to line references and review comments
- Automatically marking viewed files in the folder view
- Support for all other GitHub PR functionality                    

拡張機能の基本情報

名前 GitHub Diff Explorer GitHub Diff Explorer
ID kagcmhcnjehpeihgmcohmdceffihkglk
公式URL https://chromewebstore.google.com/detail/github-diff-explorer/kagcmhcnjehpeihgmcohmdceffihkglk
説明 The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests
ファイルサイズ 110 KB
インストール数 256
現在のバージョン 1.3.0
最終更新日 2021-03-09
公開日 2019-07-26
評価 5.00/5 合計 4 レビュー
開発者 alexdodge
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://gde.alexdodge.ca/
ヘルプページのURL https://github.com/alexmdodge/github-diff-explorer/issues
プライバシーポリシーページのURL https://gde.alexdodge.ca/privacy-policy.html
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "default_locale": "en",
    "version": "1.3.0",
    "description": "The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests",
    "author": "Alex Dodge",
    "short_name": "GitHub Diff Explorer",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_title": "GitHub Diff Explorer",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "css": [
                "lib\/gde_styles.css"
            ],
            "js": [
                "lib\/gde_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/github.com\/"
    ],
    "version_name": "1.3.0",
    "offline_enabled": true
}