GitHub Dashboard Avatars

Display your Github dashboard avatars appropriately.

GitHub Dashboard Avatars là gì?

GitHub Dashboard Avatars là một tiện ích mở rộng Chrome được phát triển bởi ryaneof, và tính năng chính của nó là "Display your Github dashboard avatars appropriately.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitHub Dashboard Avatars

Tải xuống các tệp mở rộng GitHub Dashboard Avatars dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Display Options: All Avatars, No Avatars.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GitHub Dashboard Avatars GitHub Dashboard Avatars
ID gmbhmmbplafgcmeikgohjpanekbcmbhp
URL Chính Thức https://chrome.google.com/webstore/detail/gmbhmmbplafgcmeikgohjpanekbcmbhp
Mô tả Display your Github dashboard avatars appropriately.
Kích Thước Tệp 74.46 KB
Số Lần Cài Đặt 49
Phiên Bản Hiện Tại 0.1.3
Cập Nhật Lần Cuối 2016-07-29
Ngày Phát Hành 2016-07-29
Nhà Phát Triển ryaneof
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ryaneof/github-dashboard-avatars
URL Trang Trợ Giúp https://github.com/ryaneof/github-dashboard-avatars
URL Trang Chính Sách Bảo Mật https://ryan.im
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}