GitHub File Diff
View diffs of files and directories on GitHub.
Что такое GitHub File Diff?
GitHub File Diff - это расширение Chrome, разработанное https://akr.am, и его основная функция - "View diffs of files and directories on GitHub.".
Снимки экрана расширения
Скачать файл CRX расширения GitHub File Diff
Скачайте файлы расширений GitHub File Diff в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | GitHub File Diff |
ID | lmhbkinmjbfihpkihjdhcagnigpklinh |
Официальный URL | https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh |
Описание | View diffs of files and directories on GitHub. |
Размер файла | 354 KB |
Количество установок | 153 |
Текущая Версия | 1.1.9 |
Последнее Обновление | 2024-02-04 |
Дата публикации | 2020-03-31 |
Разработчик | https://akr.am |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://github.com/mohd-akram/github-file-diff/issues |
Поддерживаемые языки | 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" ] } ] } |