Github PRs viewer
Check your open/assigned pull requests without opening Github
What is Github PRs viewer?
Github PRs viewer is a Chrome extension developed by tomas.shrewsbury, and its main feature is "Check your open/assigned pull requests without opening Github".
Extension Screenshots
Download Github PRs viewer Extension CRX File
Download Github PRs viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Permite ver PRs de Github de una manera mucho mas comoda y rapida!
Extension Basic Information
Name | Github PRs viewer |
ID | fcggaaokidkfpkhjflegbbjpojnkhelc |
Official URL | https://chromewebstore.google.com/detail/github-prs-viewer/fcggaaokidkfpkhjflegbbjpojnkhelc |
Description | Check your open/assigned pull requests without opening Github |
File Size | 3.48 MB |
Installation Count | 25 |
Current Version | 2.0.3 |
Last Updated | 2020-05-18 |
Publish Date | 2020-05-18 |
Rating | 5.00/5 Total 3 Ratings |
Developer | tomas.shrewsbury |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://candidates.flycricket.io/privacy.html |
Supported Languages | 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" ] } |