GitHub Dashboard Avatars
Display your Github dashboard avatars appropriately.
Cos'è GitHub Dashboard Avatars?
GitHub Dashboard Avatars è un'estensione di Chrome sviluppata da ryaneof, e la sua funzione principale è "Display your Github dashboard avatars appropriately.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Dashboard Avatars
Scarica i file di estensione GitHub Dashboard Avatars 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
A simple Chrome Extension which display your GitHub dashboard avatars appropriately.
Display Options: All Avatars, No Avatars. Informazioni di Base sull'Estensione
| Nome | |
| ID | gmbhmmbplafgcmeikgohjpanekbcmbhp |
| URL Ufficiale | https://chrome.google.com/webstore/detail/gmbhmmbplafgcmeikgohjpanekbcmbhp |
| Descrizione | Display your Github dashboard avatars appropriately. |
| Dimensione del File | 74.46 KB |
| Conteggio Installazioni | 49 |
| Versione Corrente | 0.1.3 |
| Ultimo Aggiornamento | 2016-07-29 |
| Data di Pubblicazione | 2016-07-29 |
| Sviluppatore | ryaneof |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/ryaneof/github-dashboard-avatars |
| URL della Pagina di Aiuto | https://github.com/ryaneof/github-dashboard-avatars |
| URL della Pagina della Politica sulla Privacy | https://ryan.im |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub Dashboard Avatars",
"version": "0.1.3",
"manifest_version": 2,
"description": "Display your Github dashboard avatars appropriately.",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts\/background.js"
]
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https:\/\/*.github.com\/*"
],
"css": [
"styles\/main.css"
],
"js": [
"bower_components\/jquery\/dist\/jquery.js",
"bower_components\/object.observe\/dist\/object-observe.js",
"scripts\/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"permissions": [
"tabs",
"storage",
"https:\/\/*.github.com\/*"
]
} | |