Github diff helper
When you have too many files in one github diff, this extension helps you filter out the noise
Github diff helper là gì?
Github diff helper là một tiện ích mở rộng Chrome được phát triển bởi https://alexw.me, và tính năng chính của nó là "When you have too many files in one github diff, this extension helps you filter out the noise".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Github diff helper
Tải xuống các tệp mở rộng Github diff helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
★★★★★ Updated to work with the new github async loading files ★★★★★ Github's diff views are terrific, they let you code review easily, but sometimes there's too much to go over! This extension lets you filter out the noise. Adding a small button in the Github diff view, you can select which file types you want to hide. Especially useful when you compile your css with SCSS/LESS, and you don't want to go over tons of generated css files. Or when you write CofeeScript and don't want to go over the generated js files. The extension also helps multiple code reviewers, when you are only in charge of code reviewing a small portion of a large diff. Let me know what you think, issues can be posted here : https://github.com/altryne/Github-diff-extension/issues
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Github diff helper |
ID | dhggdgaoccikibijlbocggphcomehbih |
URL Chính Thức | https://chromewebstore.google.com/detail/github-diff-helper/dhggdgaoccikibijlbocggphcomehbih |
Mô tả | When you have too many files in one github diff, this extension helps you filter out the noise |
Kích Thước Tệp | 137 KB |
Số Lần Cài Đặt | 203 |
Phiên Bản Hiện Tại | 0.1.1 |
Cập Nhật Lần Cuối | 2017-04-14 |
Ngày Phát Hành | 2017-04-14 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://alexw.me |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/altryne/Github-diff-extension |
URL Trang Trợ Giúp | https://github.com/altryne/Github-diff-extension/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github diff helper", "version": "0.1.1", "manifest_version": 2, "description": "When you have too many files in one github diff, this extension helps you filter out the noise", "homepage_url": "http:\/\/extensionizr.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon128.png", "128": "icons\/icon128.png" }, "permissions": [ "https:\/\/github.com\/*", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/github.com\/*" ], "js": [ "js\/jquery\/dist\/jquery.min.js", "js\/underscore.min.js", "src\/inject\/inject.js" ], "run_at": "document_start" } ] } |