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 |
官方網址 | 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 } } |