GitHub Diff Explorer
The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests
What is GitHub Diff Explorer?
GitHub Diff Explorer is a Chrome extension developed by alexdodge, and its main feature is "The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests".
Extension Screenshots
Download GitHub Diff Explorer Extension CRX File
Download GitHub Diff Explorer 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
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
Extension Basic Information
Name | GitHub Diff Explorer |
ID | kagcmhcnjehpeihgmcohmdceffihkglk |
Official URL | https://chromewebstore.google.com/detail/github-diff-explorer/kagcmhcnjehpeihgmcohmdceffihkglk |
Description | The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests |
File Size | 110 KB |
Installation Count | 256 |
Current Version | 1.3.0 |
Last Updated | 2021-03-09 |
Publish Date | 2019-07-26 |
Rating | 5.00/5 Total 4 Ratings |
Developer | alexdodge |
[email protected] | |
Payment Type | free |
Extension Website | https://gde.alexdodge.ca/ |
Help Page URL | https://github.com/alexmdodge/github-diff-explorer/issues |
Privacy Policy Page URL | https://gde.alexdodge.ca/privacy-policy.html |
Supported Languages | 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 } |