Avatars for Github

Displaying user avatars in github news feed page

Avatars for Githubคืออะไร?

Avatars for Github เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anas Nakawa และคุณลักษณะหลักของมันคือ "Displaying user avatars in github news feed page"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Avatars for Github

ดาวน์โหลดไฟล์ส่วนขยาย Avatars for Github ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Avatars for Github Avatars for Github
ID pgjmdbklnfklcjfbonjfkdhaonlfogbb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/avatars-for-github/pgjmdbklnfklcjfbonjfkdhaonlfogbb
คำอธิบาย Displaying user avatars in github news feed page
ขนาดไฟล์ 178 KB
จำนวนการติดตั้ง 2,000
เวอร์ชันปัจจุบัน 0.1.5
อัปเดตครั้งล่าสุด 2016-01-18
วันที่เผยแพร่ 2016-01-18
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Anas Nakawa
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/anasnakawa/chrome-github-avatars
ภาษาที่รองรับ 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
        }
    ]
}