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\/*"
    ]
}