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 |
| Eメール | [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"
} | |