Pipe it Down
Reduce diff noise in GitHub pull requests
Что такое Pipe it Down?
Pipe it Down - это расширение Chrome, разработанное https://thoughtbot.com, и его основная функция - "Reduce diff noise in GitHub pull requests".
Снимки экрана расширения
Скачать файл CRX расширения Pipe it Down
Скачайте файлы расширений Pipe it Down в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Sometimes the size of a pull request can be overwhelming, which has an impact on your ability to conduct a thorough review. Does your hand get tired of scrolling past file diffs you don't care about? Have you ever deleted the file DOM elements using Dev Tools? Do you yearn for a better reviewing experience? Pipe it Down helps solve this problem by providing a button to collapse files. The files you collapse are saved in local storage, so revisiting the pull request in the future will automatically collapse them for you. Collapsed files can be expanded again, if you change your mind. Feedback & contributions are welcome at https://github.com/thoughtbot/pipe-it-down.
Основная информация о расширении
Название | Pipe it Down |
ID | faljmeoihicdhamcpfmafljlhfoljegm |
Официальный URL | https://chromewebstore.google.com/detail/pipe-it-down/faljmeoihicdhamcpfmafljlhfoljegm |
Описание | Reduce diff noise in GitHub pull requests |
Размер файла | 19.72 KB |
Количество установок | 27 |
Текущая Версия | 0.1.0 |
Последнее Обновление | 2017-02-24 |
Дата публикации | 2017-02-24 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | https://thoughtbot.com |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/thoughtbot/pipe-it-down |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pipe it Down", "description": "Reduce diff noise in GitHub pull requests", "version": "0.1.0", "author": "Chris Thorn", "icons": { "128": "icon128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "zepto.min.js", "github.js", "icons.js", "store.js", "file.js", "client.js" ] } ] } |