GitHub Dashboard Avatars
Display your Github dashboard avatars appropriately.
Qu'est-ce que GitHub Dashboard Avatars ?
GitHub Dashboard Avatars est une extension Chrome développée par ryaneof, et sa fonction principale est "Display your Github dashboard avatars appropriately.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GitHub Dashboard Avatars
Téléchargez les fichiers d'extension GitHub Dashboard Avatars au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
A simple Chrome Extension which display your GitHub dashboard avatars appropriately. Display Options: All Avatars, No Avatars.
Informations de Base sur l'Extension
Nom | |
ID | gmbhmmbplafgcmeikgohjpanekbcmbhp |
URL Officiel | https://chrome.google.com/webstore/detail/gmbhmmbplafgcmeikgohjpanekbcmbhp |
Description | Display your Github dashboard avatars appropriately. |
Taille du Fichier | 74.46 KB |
Nombre d'Installations | 49 |
Version Actuelle | 0.1.3 |
Dernière Mise à Jour | 2016-07-29 |
Date de Publication | 2016-07-29 |
Développeur | ryaneof |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ryaneof/github-dashboard-avatars |
URL de la Page d'Aide | https://github.com/ryaneof/github-dashboard-avatars |
URL de la Page de Politique de Confidentialité | https://ryan.im |
Langues Prises en Charge | 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\/*" ] } |