GitHub Status
Display the build status next to the project name on github.
Vad är GitHub Status?
GitHub Status är en Chrome-tillägg utvecklad av excellenteasy, och dess huvudfunktion är "Display the build status next to the project name on github.".
Tilläggsskärmbilder
Ladda ner GitHub Status-förlängningens CRX-fil
Ladda ner GitHub Status-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Note: currently no support for private repos Grundläggande Information om Tillägg
| Namn | |
| ID | mgbkbopoincdiimlleifbpfjfhcndahp |
| Officiell webbadress | https://chromewebstore.google.com/detail/github-status/mgbkbopoincdiimlleifbpfjfhcndahp |
| Beskrivning | Display the build status next to the project name on github. |
| Filstorlek | 15.32 KB |
| Antal Installationer | 24 |
| Aktuell Version | 0.0.2 |
| Senast Uppdaterad | 2012-12-15 |
| Publiceringsdatum | 2012-12-15 |
| Betyg | 1.00/5 Totalt 1 Betyg |
| Utvecklare | excellenteasy |
| Betalningssätt | free |
| Tilläggswebbplats | http://excellenteasy.github.com/github-status/ |
| Hjälpsida URL | https://github.com/excellenteasy/github-status/issues |
| Stödda Språk | 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"
}
]
} | |