Github PRs viewer
Check your open/assigned pull requests without opening Github
Wat is Github PRs viewer?
Github PRs viewer is een Chrome-extensie ontwikkeld door tomas.shrewsbury, en de belangrijkste functie is "Check your open/assigned pull requests without opening Github".
Extensie Screenshots
Download het CRX-bestand van de extensie Github PRs viewer
Download Github PRs viewer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Permite ver PRs de Github de una manera mucho mas comoda y rapida! Basisinformatie over de Extensie
| Naam | |
| ID | fcggaaokidkfpkhjflegbbjpojnkhelc |
| Officiële URL | https://chromewebstore.google.com/detail/github-prs-viewer/fcggaaokidkfpkhjflegbbjpojnkhelc |
| Beschrijving | Check your open/assigned pull requests without opening Github |
| Bestandsgrootte | 3.48 MB |
| Aantal Installaties | 25 |
| Huidige Versie | 2.0.3 |
| Laatst Bijgewerkt | 2020-05-18 |
| Publicatiedatum | 2020-05-18 |
| Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | tomas.shrewsbury |
| [email protected] | |
| Betalingswijze | free |
| URL van de Privacybeleid Pagina | https://candidates.flycricket.io/privacy.html |
| Ondersteunde Talen | 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"
]
} | |