Github Diffs
Collapse/expand diff files for easier reviews
What is Github Diffs?
Github Diffs is a Chrome extension developed by kamranahmed.se, and its main feature is "Collapse/expand diff files for easier reviews".
Extension Screenshots
Download Github Diffs Extension CRX File
Download Github Diffs 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
Collapse/expand diff files for easier reviews When there is a large number of files in a pull request it becomes difficult to get an overview or to find some specific files with all the files stacked upon each other. This extension allows collapsing and expanding files so that you do not have to pound the innocent scrollbar. It adds buttons to `Collapse all Diffs` or `Show all Diffs` and makes `file headers clickable` to toggle the diff for some specific file
Extension Basic Information
Name | Github Diffs |
ID | dhcpmhfjmlgjfhpeeloohoffbmpjfmgh |
Official URL | https://chromewebstore.google.com/detail/github-diffs/dhcpmhfjmlgjfhpeeloohoffbmpjfmgh |
Description | Collapse/expand diff files for easier reviews |
File Size | 12.99 KB |
Installation Count | 85 |
Current Version | 1.0.3 |
Last Updated | 2017-08-11 |
Publish Date | 2017-08-11 |
Developer | kamranahmed.se |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Diffs", "short_name": "github-diffs", "version": "1.0.3", "manifest_version": 2, "description": "Collapse\/expand diff files for easier reviews", "homepage_url": "http:\/\/github.com\/kamranahmedse\/github-diffs", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "GithubDiff.js" ] } ] } |