GitHub Dashboard Avatars

Display your Github dashboard avatars appropriately.

Что такое GitHub Dashboard Avatars?

GitHub Dashboard Avatars - это расширение Chrome, разработанное ryaneof, и его основная функция - "Display your Github dashboard avatars appropriately.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения GitHub Dashboard Avatars

Скачайте файлы расширений 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\/*"
    ]
}