GitHub Dashboard Avatars
Display your Github dashboard avatars appropriately.
Vad är GitHub Dashboard Avatars?
GitHub Dashboard Avatars är en Chrome-tillägg utvecklad av ryaneof, och dess huvudfunktion är "Display your Github dashboard avatars appropriately.".
Tilläggsskärmbilder
Ladda ner GitHub Dashboard Avatars-förlängningens CRX-fil
Ladda ner GitHub Dashboard Avatars-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
A simple Chrome Extension which display your GitHub dashboard avatars appropriately.
Display Options: All Avatars, No Avatars. Grundläggande Information om Tillägg
| Namn | |
| ID | gmbhmmbplafgcmeikgohjpanekbcmbhp |
| Officiell webbadress | https://chrome.google.com/webstore/detail/gmbhmmbplafgcmeikgohjpanekbcmbhp |
| Beskrivning | Display your Github dashboard avatars appropriately. |
| Filstorlek | 74.46 KB |
| Antal Installationer | 49 |
| Aktuell Version | 0.1.3 |
| Senast Uppdaterad | 2016-07-29 |
| Publiceringsdatum | 2016-07-29 |
| Utvecklare | ryaneof |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/ryaneof/github-dashboard-avatars |
| Hjälpsida URL | https://github.com/ryaneof/github-dashboard-avatars |
| URL till Sekretesspolicy Sidan | https://ryan.im |
| Stödda Språk | 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\/*"
]
} | |