Mighty GitHub PRs
Restyle Pull Request screen for easier navigation and more focused review sessions.
什麼是Mighty GitHub PRs?
Mighty GitHub PRs是由adam.graf開發的Chrome擴展程式,該擴展的主要功能是“Restyle Pull Request screen for easier navigation and more focused review sessions.”。
擴展截圖
下載Mighty GitHub PRs擴展crx文件
下載Mighty GitHub PRs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is an extension to restyle Pull Request screen for easier navigation and more focused review sessions in GitHub (public or any private/enterprise edition). Main features: - works on corporate enterprise domains, you just need to enable in the context menu of the extension in Chrome toolbar: - shows file tree on the left hand side - folders are collapsible - folders are as concise as possible (if a folder containing on single folder it is merged with parent in visualization) - deleted files are red and crossed through in file tree - seen files become non-highlighted once seen - only one single file's diff is shown if a file is selected from the tree - large, visible Approve and Needs work buttons added ('Need work' button automatically adds a generic 'Please fix review items' comment.) - clutter is reduced - elements on the top of the page is eliminated in the file navigation view to eliminate visual noise
擴展基本資訊
名稱 | Mighty GitHub PRs |
ID | hopnfcjjghjpkfdiffabbpcpnhcpkceg |
官方網址 | https://chromewebstore.google.com/detail/mighty-github-prs/hopnfcjjghjpkfdiffabbpcpnhcpkceg |
簡介 | Restyle Pull Request screen for easier navigation and more focused review sessions. |
檔案大小 | 39.5 KB |
安裝次數 | 118 |
目前版本 | 1.1.1 |
更新時間 | 2021-03-29 |
上架時間 | 2019-11-12 |
評分 | 5.00/5 共 3 次評分 |
開發者 | adam.graf |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/netgrafe/mighty-github-prs |
說明頁面URL | https://github.com/netgrafe/mighty-github-prs |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mighty GitHub PRs", "version": "1.1.1", "description": "Restyle Pull Request screen for easier navigation and more focused review sessions.", "manifest_version": 2, "icons": { "48": "mighty-github-icon-48x48.png", "128": "mighty-github-icon-128x128.png", "192": "mighty-github-icon-192x192.png" }, "browser_action": { "default_icon": { "48": "mighty-github-icon-48x48.png", "128": "mighty-github-icon-128x128.png", "192": "mighty-github-icon-192x192.png" } }, "permissions": [ "tabs", "contextMenus", "*:\/\/*.github.com\/*" ], "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "webext-permissions-events-polyfill.js", "webext-dynamic-content-scripts.js", "webext-domain-permission-toggle.js", "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.github.com\/*" ], "css": [ "pr-optimizer.css" ], "js": [ "pr-optimizer.js" ] } ] } |