GitHub File Diff
View diffs of files and directories on GitHub.
Hvad er GitHub File Diff?
GitHub File Diff er en Chrome-udvidelse udviklet af https://akr.am, og dens hovedfunktion er "View diffs of files and directories on GitHub.".
Udvidelsesskærmbilleder
Download GitHub File Diff-udvidelses-CRX-fil
Download GitHub File Diff-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
To use this extension, go to a file or directory in GitHub and click the **History** button. Then, click on any commit. The extension will override the click to show the diffs of only the relevant files instead of GitHub's default behavior of showing the entire commit's diff. This is especially helpful when a commit is very large and GitHub only shows a partial diff or none at all. To get the regular view, simply refresh the page.
Grundlæggende oplysninger om udvidelsen
Navn | GitHub File Diff |
ID | lmhbkinmjbfihpkihjdhcagnigpklinh |
Officiel URL | https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh |
Beskrivelse | View diffs of files and directories on GitHub. |
Filstørrelse | 354 KB |
Antal Installationer | 153 |
Nuværende Version | 1.1.9 |
Senest Opdateret | 2024-02-04 |
Udgivelsesdato | 2020-03-31 |
Udvikler | https://akr.am |
[email protected] | |
Betalingsmetode | free |
Hjælpeside-URL | https://github.com/mohd-akram/github-file-diff/issues |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub File Diff", "version": "1.1.9", "description": "View diffs of files and directories on GitHub.", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png", "256": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "vendor.css" ], "js": [ "vendor.js", "main.js" ] } ] } |