GitHub Dashboard Avatars

Display your Github dashboard avatars appropriately.

O que é GitHub Dashboard Avatars?

GitHub Dashboard Avatars é uma extensão do Chrome desenvolvida por ryaneof, e sua principal característica é "Display your Github dashboard avatars appropriately.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão GitHub Dashboard Avatars

Baixe arquivos de extensão GitHub Dashboard Avatars no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        A simple Chrome Extension which display your GitHub dashboard avatars appropriately.

Display Options: All Avatars, No Avatars.                    

Informações Básicas da Extensão

Nome GitHub Dashboard Avatars GitHub Dashboard Avatars
ID gmbhmmbplafgcmeikgohjpanekbcmbhp
URL Oficial https://chrome.google.com/webstore/detail/gmbhmmbplafgcmeikgohjpanekbcmbhp
Descrição Display your Github dashboard avatars appropriately.
Tamanho do Arquivo 74.46 KB
Contagem de Instalações 49
Versão Atual 0.1.3
Última Atualização 2016-07-29
Data de Publicação 2016-07-29
Desenvolvedor ryaneof
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ryaneof/github-dashboard-avatars
URL da Página de Ajuda https://github.com/ryaneof/github-dashboard-avatars
URL da Página de Política de Privacidade https://ryan.im
Idiomas Suportados 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\/*"
    ]
}