Github PRs viewer
Check your open/assigned pull requests without opening Github
Github PRs viewerとは何ですか?
Github PRs viewerはtomas.shrewsburyによって開発されたChromeの拡張機能で、その主な機能は「Check your open/assigned pull requests without opening Github」です。
拡張機能のスクリーンショット
Github PRs viewer拡張機能のCRXファイルをダウンロード
Github PRs viewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Permite ver PRs de Github de una manera mucho mas comoda y rapida!
拡張機能の基本情報
名前 | Github PRs viewer |
ID | fcggaaokidkfpkhjflegbbjpojnkhelc |
公式URL | https://chromewebstore.google.com/detail/github-prs-viewer/fcggaaokidkfpkhjflegbbjpojnkhelc |
説明 | Check your open/assigned pull requests without opening Github |
ファイルサイズ | 3.48 MB |
インストール数 | 25 |
現在のバージョン | 2.0.3 |
最終更新日 | 2020-05-18 |
公開日 | 2020-05-18 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | tomas.shrewsbury |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | https://candidates.flycricket.io/privacy.html |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github PRs viewer", "short_name": "Github PRs", "version": "2.0.3", "description": "Check your open\/assigned pull requests without opening Github", "author": "Tomas Shrewsbury", "icons": { "64": "icons\/icon-logo.png", "128": "icons\/icon-logo.png" }, "browser_action": { "default_title": "Github Buddy", "default_popup": "index.html" }, "background": { "scripts": [ ".\/oauth2\/oauth2.js", ".\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/robots.txt*" ], "js": [ ".\/oauth2\/oauth2_inject.js" ], "run_at": "document_start" } ], "permissions": [ "storage", "https:\/\/github.com\/login\/oauth\/access_token", "idle", "notifications", "contextMenus" ], "web_accessible_resources": [ "oauth2\/oauth2.html" ] } |