Pretty Pull Requests (Github)
This extension applies various tweaks to the github pull-request code review pages.
什麼是Pretty Pull Requests (Github)?
Pretty Pull Requests (Github)是由Brent Yates開發的Chrome擴展程式,該擴展的主要功能是“This extension applies various tweaks to the github pull-request code review pages.”。
擴展截圖
下載Pretty Pull Requests (Github)擴展crx文件
下載Pretty Pull Requests (Github)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension will add various features to the diff view on Github's pull request pages. Supports both files changed and commit diffs. Current Features: - Click on the file name to collapse a file, or collapse from bottom up via an added button - Collapse/Expand all - Collapse/Expand all that match a regex pattern - Collapse/Expand added/removed lines - File tree view allowing you to collapse a directory, or jump directly to a file diff - Github Enterprise Support (set your URL via right-clicking the address bar icon, and going to 'options')
擴展基本資訊
名稱 | Pretty Pull Requests (Github) |
ID | ljnjpkadhhcdniohpfilddnhahoigdec |
官方網址 | https://chromewebstore.google.com/detail/pretty-pull-requests-gith/ljnjpkadhhcdniohpfilddnhahoigdec |
簡介 | This extension applies various tweaks to the github pull-request code review pages. |
檔案大小 | 412 KB |
安裝次數 | 1,338 |
目前版本 | 2.11.1 |
更新時間 | 2018-01-31 |
上架時間 | 2018-01-31 |
評分 | 3.95/5 共 21 次評分 |
開發者 | Brent Yates |
付費類型 | free |
擴展官網 | https://github.com/Yatser/prettypullrequests |
說明頁面URL | https://github.com/Yatser/prettypullrequests/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pretty Pull Requests (Github)", "description": "This extension applies various tweaks to the github pull-request code review pages.", "version": "2.11.1", "icons": { "32": "ppr-logo\/32x32.png", "64": "ppr-logo\/64x64.png", "128": "ppr-logo\/128x128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "storage", "activeTab" ], "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/pull\/*\/files", "https:\/\/github.com\/*\/commit*", "https:\/\/github.com\/*\/pulls*", "https:\/\/github.com\/*\/compare*", "https:\/\/github.com\/*\/*\/pulls*", "https:\/\/github.com\/*\/*\/pull\/*", "https:\/\/github.com\/*\/*\/pull\/*\/files", "https:\/\/github.com\/*\/*\/commit*", "https:\/\/github.com\/*\/*\/compare*" ], "js": [ "jquery-1.9.1.min.js", "github.com.js" ], "css": [ "pullrequest.css" ] } ], "page_action": { "default_icon": "ppr-logo\/128x128.png", "default_title": "Pretty Pull Requests", "default_popup": "popup.html" }, "web_accessible_resources": [ "jquery-1.9.1.min.js" ], "options_page": "options.html" } |