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 |
电子邮箱 | [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" ] } |