Github PRs viewer
Check your open/assigned pull requests without opening Github
O que é Github PRs viewer?
Github PRs viewer é uma extensão do Chrome desenvolvida por tomas.shrewsbury, e sua principal característica é "Check your open/assigned pull requests without opening Github".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Github PRs viewer
Baixe arquivos de extensão Github PRs viewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Permite ver PRs de Github de una manera mucho mas comoda y rapida!
Informações Básicas da Extensão
Nome | Github PRs viewer |
ID | fcggaaokidkfpkhjflegbbjpojnkhelc |
URL Oficial | https://chromewebstore.google.com/detail/github-prs-viewer/fcggaaokidkfpkhjflegbbjpojnkhelc |
Descrição | Check your open/assigned pull requests without opening Github |
Tamanho do Arquivo | 3.48 MB |
Contagem de Instalações | 25 |
Versão Atual | 2.0.3 |
Última Atualização | 2020-05-18 |
Data de Publicação | 2020-05-18 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | tomas.shrewsbury |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://candidates.flycricket.io/privacy.html |
Idiomas Suportados | 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" ] } |