Better Pull Request for GitHub
Add a file tree to GitHub Pull Requests
什么是Better Pull Request for GitHub?
Better Pull Request for GitHub是由Tal Bereznitskey开发的Chrome扩展程序,该扩展的主要功能是“Add a file tree to GitHub Pull Requests”。
扩展截图
下载Better Pull Request for GitHub扩展crx文件
下载Better Pull Request for GitHub扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Make GitHub Pull Requests better with a file tree view and other UX improvements
- Browse pull requests with an IDE like file tree
- Private repositories support out of the box
- GitHub Enterprise support
- Other goodies: review viewed files, resizable tree, expand to full width and more
This is an open-source community project and is in no way affiliated or endorsed by GitHub.
For suggestions, issues and contribution, see https://github.com/berzniz/github_pr_tree 扩展基本信息
| 名称 | |
| ID | nfhdjopbhlggibjlimhdbogflgmbiahc |
| 官方URL | https://chromewebstore.google.com/detail/better-pull-request-for-g/nfhdjopbhlggibjlimhdbogflgmbiahc |
| 简介 | Add a file tree to GitHub Pull Requests |
| 文件大小 | 405 KB |
| 安装次数 | 10,000 |
| 当前版本 | 1.0.37 |
| 更新时间 | 2022-04-08 |
| 上架时间 | 2020-05-01 |
| 评分 | 4.88/5 共215次评分 |
| 开发者 | Tal Bereznitskey |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/berzniz/github_pr_tree |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Better Pull Request for GitHub",
"short_name": "Better PRs",
"permissions": [
"contextMenus",
"storage",
"*:\/\/*.github.com\/*"
],
"optional_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*.github.com\/*"
],
"run_at": "document_idle",
"js": [
"better_github_prs.js"
],
"css": []
}
],
"browser_action": {
"default_icon": {
"16": "16x16.png",
"48": "48x48.png",
"128": "128x128.png"
},
"default_popup": "options.html"
},
"options_page": "options.html",
"web_accessible_resources": [
"options.html",
"*.woff2"
],
"icons": {
"16": "16x16.png",
"48": "48x48.png",
"128": "128x128.png"
},
"manifest_version": 2,
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"description": "Add a file tree to GitHub Pull Requests",
"version": "1.0.37"
} | |