GitHub Enhancement Suite
A set of tools to enhance the GitHub experience.
What is GitHub Enhancement Suite?
GitHub Enhancement Suite is a Chrome extension developed by DTwigs, and its main feature is "A set of tools to enhance the GitHub experience.".
Extension Screenshots
Download GitHub Enhancement Suite Extension CRX File
Download GitHub Enhancement Suite 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
The GitHub Enhancement Suite improves your GitHub experience. Tools: File Filter: Filter your github files by file type when viewing code changes. Commit Compare: a small "down arrow" icon next to each commit in a PR allowing you to compare that commit to the latest commit in that PR. Source Code: https://github.com/DTwigs/FilterDiff
Extension Basic Information
Name | GitHub Enhancement Suite |
ID | eiehflbilhldhfbnolbnggcapbjmnpmo |
Official URL | https://chromewebstore.google.com/detail/github-enhancement-suite/eiehflbilhldhfbnolbnggcapbjmnpmo |
Description | A set of tools to enhance the GitHub experience. |
File Size | 56.24 KB |
Installation Count | 260 |
Current Version | 0.4 |
Last Updated | 2014-02-22 |
Publish Date | 2014-02-21 |
Rating | 2.00/5 Total 1 Ratings |
Developer | DTwigs |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Enhancement Suite", "version": "0.4", "manifest_version": 2, "description": "A set of tools to enhance the GitHub experience.", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "name": "Initialize GitHub Enhancement Suite", "default_icon": "images\/icon128.png" }, "web_accessible_resources": [ "images\/icon.png" ], "content_scripts": [ { "js": [ "jquery.min.js", "background.js" ], "css": [ "mystyles.css" ], "matches": [ "http:\/\/github.com\/*", "https:\/\/github.com\/*" ] } ] } |