Hangouts GitHub Emojifier

Converts Emoji on GitHub to Google-style Emoji

Hangouts GitHub Emojifierคืออะไร?

Hangouts GitHub Emojifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Paul Betts และคุณลักษณะหลักของมันคือ "Converts Emoji on GitHub to Google-style Emoji"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hangouts GitHub Emojifier

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

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

                        This Extension works on GitHub.com to replace all of their Apple-style Emoji with Google-style Emoji.                    

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

ชื่อ Hangouts GitHub Emojifier Hangouts GitHub Emojifier
ID gnmkclfcadpmdkbihlgdebnnlolabgll
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hangouts-github-emojifier/gnmkclfcadpmdkbihlgdebnnlolabgll
คำอธิบาย Converts Emoji on GitHub to Google-style Emoji
ขนาดไฟล์ 24.28 KB
จำนวนการติดตั้ง 176
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2015-03-08
วันที่เผยแพร่ 2015-03-07
คะแนน 4.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Paul Betts
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/paulcbetts/github-emoji-switcher
URL หน้าช่วยเหลือ https://github.com/paulcbetts/github-emoji-switcher/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hangouts GitHub Emojifier",
    "description": "Converts Emoji on GitHub to Google-style Emoji",
    "version": "0.1.0",
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "64": "img\/icon_64.png",
        "128": "img\/icon_128.png"
    },
    "permissions": [
        "http:\/\/*.github.com\/*",
        "https:\/\/*.github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "scripts\/main.min.js"
            ]
        }
    ]
}