Github PRs viewer
Check your open/assigned pull requests without opening Github
Cos'è Github PRs viewer?
Github PRs viewer è un'estensione di Chrome sviluppata da tomas.shrewsbury, e la sua funzione principale è "Check your open/assigned pull requests without opening Github".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Github PRs viewer
Scarica i file di estensione Github PRs viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Permite ver PRs de Github de una manera mucho mas comoda y rapida!
Informazioni di Base sull'Estensione
Nome | Github PRs viewer |
ID | fcggaaokidkfpkhjflegbbjpojnkhelc |
URL Ufficiale | https://chromewebstore.google.com/detail/github-prs-viewer/fcggaaokidkfpkhjflegbbjpojnkhelc |
Descrizione | Check your open/assigned pull requests without opening Github |
Dimensione del File | 3.48 MB |
Conteggio Installazioni | 25 |
Versione Corrente | 2.0.3 |
Ultimo Aggiornamento | 2020-05-18 |
Data di Pubblicazione | 2020-05-18 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | tomas.shrewsbury |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://candidates.flycricket.io/privacy.html |
Lingue Supportate | 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" ] } |