Github Expand Diff

A user script for Chrome that allows you to expand the missing lines in a Github diff.

What is Github Expand Diff?

Github Expand Diff is a Chrome extension developed by Michael Ridgway, and its main feature is "A user script for Chrome that allows you to expand the missing lines in a Github diff.".

Extension Screenshots

screenshot
screenshot

Download Github Expand Diff Extension CRX File

Download Github Expand Diff extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name Github Expand Diff Github Expand Diff
ID imakbajpbolcgnkfhhlhipbjppfomlij
Official URL https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij
Description A user script for Chrome that allows you to expand the missing lines in a Github diff.
File Size 5.63 KB
Installation Count 121
Current Version 0.0.1.6
Last Updated 2014-06-18
Publish Date 2014-06-18
Rating 3.86/5 Total 7 Ratings
Developer Michael Ridgway
Payment Type free
Extension Website https://github.com/mridgway/github-expand-diff
Help Page URL https://github.com/mridgway/github-expand-diff/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Expand Diff",
    "version": "0.0.1.6",
    "description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.com\/*\/*\/pull\/*",
                "https:\/\/*.com\/*\/*\/commit\/*",
                "https:\/\/*.com\/*\/*\/compare\/*"
            ],
            "include_globs": [
                "https:\/\/github.com\/*",
                "https:\/\/github.*.com\/*",
                "https:\/\/git.*.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "github-expand-diff.user.js"
            ]
        }
    ]
}