GitHub Status
Display the build status next to the project name on github.
Cos'è GitHub Status?
GitHub Status è un'estensione di Chrome sviluppata da excellenteasy, e la sua funzione principale è "Display the build status next to the project name on github.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Status
Scarica i file di estensione GitHub Status 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
Note: currently no support for private repos Informazioni di Base sull'Estensione
| Nome | |
| ID | mgbkbopoincdiimlleifbpfjfhcndahp |
| URL Ufficiale | https://chromewebstore.google.com/detail/github-status/mgbkbopoincdiimlleifbpfjfhcndahp |
| Descrizione | Display the build status next to the project name on github. |
| Dimensione del File | 15.32 KB |
| Conteggio Installazioni | 24 |
| Versione Corrente | 0.0.2 |
| Ultimo Aggiornamento | 2012-12-15 |
| Data di Pubblicazione | 2012-12-15 |
| Valutazione | 1.00/5 Totale 1 Valutazioni |
| Sviluppatore | excellenteasy |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://excellenteasy.github.com/github-status/ |
| URL della Pagina di Aiuto | https://github.com/excellenteasy/github-status/issues |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"version": "0.0.2",
"manifest_version": 2,
"name": "GitHub Status",
"description": "Display the build status next to the project name on github.",
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"js": [
"script.js"
],
"matches": [
"https:\/\/github.com\/*"
],
"run_at": "document_idle"
}
]
} | |