GitHub File Diff
View diffs of files and directories on GitHub.
Cos'è GitHub File Diff?
GitHub File Diff è un'estensione di Chrome sviluppata da https://akr.am, e la sua funzione principale è "View diffs of files and directories on GitHub.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub File Diff
Scarica i file di estensione GitHub File Diff in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | GitHub File Diff |
ID | lmhbkinmjbfihpkihjdhcagnigpklinh |
URL Ufficiale | https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh |
Descrizione | View diffs of files and directories on GitHub. |
Dimensione del File | 354 KB |
Conteggio Installazioni | 153 |
Versione Corrente | 1.1.9 |
Ultimo Aggiornamento | 2024-02-04 |
Data di Pubblicazione | 2020-03-31 |
Sviluppatore | https://akr.am |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/mohd-akram/github-file-diff/issues |
Lingue Supportate | 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" ] } ] } |