github.monkeypatch.pullrequests
Keep track of pull requests you've viewed, approved, or rejected.
github.monkeypatch.pullrequestsとは何ですか?
github.monkeypatch.pullrequestsはsteven.m.wexlerによって開発されたChromeの拡張機能で、その主な機能は「Keep track of pull requests you've viewed, approved, or rejected.」です。
拡張機能のスクリーンショット
github.monkeypatch.pullrequests拡張機能のCRXファイルをダウンロード
github.monkeypatch.pullrequests拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Keep track of pull requests you've viewed, approved, or rejected. Approve a pull request by writing a comment with a thumbs up icon (:+1:) in the pull request conversation. Reject a pull request by writing a comment with a thumbs down icon (:-1:) in the pull request conversation. Pull requests you've viewed, approved, or rejected are indicated by green, red, or yellow respectively. The thumbs up / thumbs down icons represent how many people have approved / rejected a pull request. Pull requests with commits you haven't seen are indicated with a "New Commits" annotation. GitHub: https://github.com/steaks/githubpullrequestsmanager
拡張機能の基本情報
名前 | github.monkeypatch.pullrequests |
ID | khfpfmfiapjcfacafgjcigimaaakilen |
公式URL | https://chromewebstore.google.com/detail/githubmonkeypatchpullrequ/khfpfmfiapjcfacafgjcigimaaakilen |
説明 | Keep track of pull requests you've viewed, approved, or rejected. |
ファイルサイズ | 1.27 MB |
インストール数 | 31 |
現在のバージョン | 1.7.5 |
最終更新日 | 2015-06-27 |
公開日 | 2015-06-27 |
開発者 | steven.m.wexler |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "github.monkeypatch.pullrequests", "description": "Keep track of pull requests you've viewed, approved, or rejected.", "version": "1.7.5", "icons": { "128": "codeducky_partial_logo_128x128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/www.platform.githubenhancements.com\/*" ], "js": [ "jquery-1.11.1.min.js", "jquery.visible.js", "lodash.js", "angular.js", "jquery.hotkeys.js", "jquery.scrollTo.js", "GitHubPullRequestStatus.js" ], "css": [ "GitHubPullRequestStatus.css" ] } ], "background": { "scripts": [ "jquery-1.11.1.min.js", "GitHubPullRequestStatusBackground.js" ], "persistent": false } } |