GitHub PR Helper

View and manage labels in GitHub Pull Request views.

GitHub PR Helperとは何ですか?

GitHub PR HelperはPete Bacon Darwinによって開発されたChromeの拡張機能で、その主な機能は「View and manage labels in GitHub Pull Request views.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

GitHub PR Helper拡張機能のCRXファイルをダウンロード

GitHub PR Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A Chrome Extension to make the Pull Request view on GitHub nicer 

** Major change: Authorization is now done through Personal Access Tokens.  You'll need to update your configuration. See the README**

For some reason GitHub doesn't provide the same UI for viewing and managing labels on Pull Requests as it does for Issues.  In a large project with lots of Pull Requests (such as AngularJS) it is really annoying to have to use the Issue List page for
viewing and managing Pull Request labels.

This extension, injects this missing UI into GitHub Pull Request list pages to make life easier all round.

Features include:

- Display labels on PR list pages
- Display labels on PR detail pages (removed as Github now does this)
- Manage PR labels on PR detail pages (removed as Github now does this)
- Milestones shown on PR list pages

Please see the README in the GitHub repository (https://github.com/petebacondarwin/github-pr-helper) for further installation and usage instructions; and submit issues or pull requests to make it better!                    

拡張機能の基本情報

名前 GitHub PR Helper GitHub PR Helper
ID mokbklfnaddkkbolfldepnkfmanfhpen
公式URL https://chrome.google.com/webstore/detail/github-pr-helper/mokbklfnaddkkbolfldepnkfmanfhpen
説明 View and manage labels in GitHub Pull Request views.
ファイルサイズ 363 KB
インストール数 38
現在のバージョン 0.3.0
最終更新日 2014-01-30
公開日 2014-01-30
評価 4.50/5 合計 2 レビュー
開発者 Pete Bacon Darwin
支払い方法 free
ヘルプページのURL https://github.com/petebacondarwin/github-pr-helper
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub PR Helper",
    "description": "View and manage labels in GitHub Pull Request views.",
    "version": "0.3.0",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "author": "Pete Bacon Darwin",
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/pull*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "lib\/angular.js",
                "src\/CSRFScraper.js",
                "src\/githubAPI.js",
                "src\/labels.js",
                "src\/listGroupItems.js",
                "src\/credentialsForm.js",
                "src\/githubHacks.js",
                "src\/flashMessages.js",
                "src\/extension.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "lib\/jquery-2.0.3.min.map"
    ]
}