GitHub Dashboard Avatars

Display your Github dashboard avatars appropriately.

What is GitHub Dashboard Avatars?

GitHub Dashboard Avatars is a Chrome extension developed by ryaneof, and its main feature is "Display your Github dashboard avatars appropriately.".

Extension Screenshots

screenshot
screenshot

Download GitHub Dashboard Avatars Extension CRX File

Download GitHub Dashboard Avatars extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Display Options: All Avatars, No Avatars.                    

Extension Basic Information

Name GitHub Dashboard Avatars GitHub Dashboard Avatars
ID gmbhmmbplafgcmeikgohjpanekbcmbhp
Official URL https://chrome.google.com/webstore/detail/gmbhmmbplafgcmeikgohjpanekbcmbhp
Description Display your Github dashboard avatars appropriately.
File Size 74.46 KB
Installation Count 49
Current Version 0.1.3
Last Updated 2016-07-29
Publish Date 2016-07-29
Developer ryaneof
Email [email protected]
Payment Type free
Extension Website https://github.com/ryaneof/github-dashboard-avatars
Help Page URL https://github.com/ryaneof/github-dashboard-avatars
Privacy Policy Page URL https://ryan.im
Supported Languages 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\/*"
    ]
}