Grumpy Flag

Shows the country name when hovering a flag emoji on facebook

What is Grumpy Flag?

Grumpy Flag is a Chrome extension developed by m.fawzy.linux, and its main feature is "Shows the country name when hovering a flag emoji on facebook".

Extension Screenshots

screenshot

Download Grumpy Flag Extension CRX File

Download Grumpy Flag extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        # 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                    

Extension Basic Information

Name Grumpy Flag Grumpy Flag
ID bbljbjohmddadkbdnplacilnkjiggkoi
Official URL https://chromewebstore.google.com/detail/grumpy-flag/bbljbjohmddadkbdnplacilnkjiggkoi
Description Shows the country name when hovering a flag emoji on facebook
File Size 5.61 KB
Installation Count 38
Current Version 0.01
Last Updated 2018-11-07
Publish Date 2018-11-07
Rating 5.00/5 Total 1 Ratings
Developer m.fawzy.linux
Payment Type free
Extension Website https://github.com/foozee/grumpyFlag
Supported Languages 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"
            ]
        }
    ]
}