Github PRs viewer
Check your open/assigned pull requests without opening Github
Hvad er Github PRs viewer?
Github PRs viewer er en Chrome-udvidelse udviklet af tomas.shrewsbury, og dens hovedfunktion er "Check your open/assigned pull requests without opening Github".
Udvidelsesskærmbilleder
Download Github PRs viewer-udvidelses-CRX-fil
Download Github PRs viewer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Permite ver PRs de Github de una manera mucho mas comoda y rapida! Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | fcggaaokidkfpkhjflegbbjpojnkhelc |
| Officiel URL | https://chromewebstore.google.com/detail/github-prs-viewer/fcggaaokidkfpkhjflegbbjpojnkhelc |
| Beskrivelse | Check your open/assigned pull requests without opening Github |
| Filstørrelse | 3.48 MB |
| Antal Installationer | 25 |
| Nuværende Version | 2.0.3 |
| Senest Opdateret | 2020-05-18 |
| Udgivelsesdato | 2020-05-18 |
| Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
| Udvikler | tomas.shrewsbury |
| [email protected] | |
| Betalingsmetode | free |
| URL til Fortrolighedspolitik Side | https://candidates.flycricket.io/privacy.html |
| Understøttede Sprog | 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"
]
} | |