GitHub Dashboard Avatars
Display your Github dashboard avatars appropriately.
Hvad er GitHub Dashboard Avatars?
GitHub Dashboard Avatars er en Chrome-udvidelse udviklet af ryaneof, og dens hovedfunktion er "Display your Github dashboard avatars appropriately.".
Udvidelsesskærmbilleder
Download GitHub Dashboard Avatars-udvidelses-CRX-fil
Download GitHub Dashboard Avatars-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
A simple Chrome Extension which display your GitHub dashboard avatars appropriately. Display Options: All Avatars, No Avatars.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | gmbhmmbplafgcmeikgohjpanekbcmbhp |
Officiel URL | https://chrome.google.com/webstore/detail/gmbhmmbplafgcmeikgohjpanekbcmbhp |
Beskrivelse | Display your Github dashboard avatars appropriately. |
Filstørrelse | 74.46 KB |
Antal Installationer | 49 |
Nuværende Version | 0.1.3 |
Senest Opdateret | 2016-07-29 |
Udgivelsesdato | 2016-07-29 |
Udvikler | ryaneof |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/ryaneof/github-dashboard-avatars |
Hjælpeside-URL | https://github.com/ryaneof/github-dashboard-avatars |
URL til Fortrolighedspolitik Side | https://ryan.im |
Understøttede Sprog | 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\/*" ] } |