GitHub Dashboard Avatars

Display your Github dashboard avatars appropriately.

什么是GitHub Dashboard Avatars?

GitHub Dashboard Avatars是由ryaneof开发的Chrome扩展程序,该扩展的主要功能是“Display your Github dashboard avatars appropriately.”。

扩展截图

screenshot
screenshot

下载GitHub Dashboard Avatars扩展crx文件

下载GitHub Dashboard Avatars扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

Display Options: All Avatars, No Avatars.                    

扩展基本信息

名称 GitHub Dashboard Avatars GitHub Dashboard Avatars
ID gmbhmmbplafgcmeikgohjpanekbcmbhp
官方URL https://chrome.google.com/webstore/detail/gmbhmmbplafgcmeikgohjpanekbcmbhp
简介 Display your Github dashboard avatars appropriately.
文件大小 74.46 KB
安装次数 49
当前版本 0.1.3
更新时间 2016-07-29
上架时间 2016-07-29
开发者 ryaneof
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/ryaneof/github-dashboard-avatars
帮助页面URL https://github.com/ryaneof/github-dashboard-avatars
隐私政策页面URL https://ryan.im
支持的语言 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\/*"
    ]
}