GitHub Enhancement Suite
A set of tools to enhance the GitHub experience.
什麼是GitHub Enhancement Suite?
GitHub Enhancement Suite是由DTwigs開發的Chrome擴展程式,該擴展的主要功能是“A set of tools to enhance the GitHub experience.”。
擴展截圖
下載GitHub Enhancement Suite擴展crx文件
下載GitHub Enhancement Suite擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The GitHub Enhancement Suite improves your GitHub experience. Tools: File Filter: Filter your github files by file type when viewing code changes. Commit Compare: a small "down arrow" icon next to each commit in a PR allowing you to compare that commit to the latest commit in that PR. Source Code: https://github.com/DTwigs/FilterDiff
擴展基本資訊
名稱 | GitHub Enhancement Suite |
ID | eiehflbilhldhfbnolbnggcapbjmnpmo |
官方網址 | https://chromewebstore.google.com/detail/github-enhancement-suite/eiehflbilhldhfbnolbnggcapbjmnpmo |
簡介 | A set of tools to enhance the GitHub experience. |
檔案大小 | 56.24 KB |
安裝次數 | 260 |
目前版本 | 0.4 |
更新時間 | 2014-02-22 |
上架時間 | 2014-02-21 |
評分 | 2.00/5 共 1 次評分 |
開發者 | DTwigs |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Enhancement Suite", "version": "0.4", "manifest_version": 2, "description": "A set of tools to enhance the GitHub experience.", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "name": "Initialize GitHub Enhancement Suite", "default_icon": "images\/icon128.png" }, "web_accessible_resources": [ "images\/icon.png" ], "content_scripts": [ { "js": [ "jquery.min.js", "background.js" ], "css": [ "mystyles.css" ], "matches": [ "http:\/\/github.com\/*", "https:\/\/github.com\/*" ] } ] } |