Github diff helper
When you have too many files in one github diff, this extension helps you filter out the noise
什麼是Github diff helper?
Github diff helper是由https://alexw.me開發的Chrome擴展程式,該擴展的主要功能是“When you have too many files in one github diff, this extension helps you filter out the noise”。
擴展截圖
下載Github diff helper擴展crx文件
下載Github diff helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
★★★★★ 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
擴展基本資訊
名稱 | Github diff helper |
ID | dhggdgaoccikibijlbocggphcomehbih |
官方網址 | https://chromewebstore.google.com/detail/github-diff-helper/dhggdgaoccikibijlbocggphcomehbih |
簡介 | When you have too many files in one github diff, this extension helps you filter out the noise |
檔案大小 | 137 KB |
安裝次數 | 203 |
目前版本 | 0.1.1 |
更新時間 | 2017-04-14 |
上架時間 | 2017-04-14 |
評分 | 5.00/5 共 3 次評分 |
開發者 | https://alexw.me |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/altryne/Github-diff-extension |
說明頁面URL | https://github.com/altryne/Github-diff-extension/issues |
支援的語言 | 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" } ] } |