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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        # 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"
            ]
        }
    ]
}