Avatars for Github

Displaying user avatars in github news feed page

What is Avatars for Github?

Avatars for Github is a Chrome extension developed by Anas Nakawa, and its main feature is "Displaying user avatars in github news feed page".

Extension Screenshots

screenshot

Download Avatars for Github Extension CRX File

Download Avatars for Github 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

                        displayed user avatars on the Github news feed, nothing more, nothing less..                    

Extension Basic Information

Name Avatars for Github Avatars for Github
ID pgjmdbklnfklcjfbonjfkdhaonlfogbb
Official URL https://chrome.google.com/webstore/detail/avatars-for-github/pgjmdbklnfklcjfbonjfkdhaonlfogbb
Description Displaying user avatars in github news feed page
File Size 178 KB
Installation Count 2,000
Current Version 0.1.5
Last Updated 2016-01-18
Publish Date 2016-01-18
Rating 5.00/5 Total 7 Ratings
Developer Anas Nakawa
Email [email protected]
Payment Type free
Extension Website https://github.com/anasnakawa/chrome-github-avatars
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Avatars for Github",
    "version": "0.1.5",
    "manifest_version": 2,
    "description": "Displaying user avatars in github news feed page",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "homepage_url": "http:\/\/github.com\/anasnakawa\/chrome-github-avatars",
    "permissions": [
        "tabs",
        "*:\/\/github.com\/"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "web_accessible_resources": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/"
            ],
            "css": [
                "styles\/main.css"
            ],
            "js": [
                "bower_components\/jquery\/jquery.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}