Grumpy Flag

Shows the country name when hovering a flag emoji on facebook

Grumpy Flagคืออะไร?

Grumpy Flag เป็นส่วนขยายของ Chrome ที่พัฒนาโดย m.fawzy.linux และคุณลักษณะหลักของมันคือ "Shows the country name when hovering a flag emoji on facebook"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Grumpy Flag

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

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

                        # what?
Chrome plugin to display country names as a title (toolbox hover) on facebook posts for flag emojis

# Why?
Well, uhm, I'm a member of a facebook group called Grumpy Expat in which people would end up starting almost all posts in the format "🇪🇬 in 🇳🇱 ... " and because I'm (and so many fellow group members are) flag-challenged, I just created this tiny plugin to tell me which flag maps to which country :D (also hence the name)

Flag-emoji mapping is based on gemoji project [https://github.com/github/gemoji]

code can be found at https://github.com/foozee/grumpyFlag                    

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

ชื่อ Grumpy Flag Grumpy Flag
ID bbljbjohmddadkbdnplacilnkjiggkoi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/grumpy-flag/bbljbjohmddadkbdnplacilnkjiggkoi
คำอธิบาย Shows the country name when hovering a flag emoji on facebook
ขนาดไฟล์ 5.61 KB
จำนวนการติดตั้ง 38
เวอร์ชันปัจจุบัน 0.01
อัปเดตครั้งล่าสุด 2018-11-07
วันที่เผยแพร่ 2018-11-07
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา m.fawzy.linux
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/foozee/grumpyFlag
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Grumpy Flag",
    "version": "0.01",
    "description": "Shows the country name when hovering a flag emoji on facebook",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.facebook.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}