Grumpy Flag

Shows the country name when hovering a flag emoji on facebook

Vad är Grumpy Flag?

Grumpy Flag är en Chrome-tillägg utvecklad av m.fawzy.linux, och dess huvudfunktion är "Shows the country name when hovering a flag emoji on facebook".

Tilläggsskärmbilder

screenshot

Ladda ner Grumpy Flag-förlängningens CRX-fil

Ladda ner Grumpy Flag-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        # 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                    

Grundläggande Information om Tillägg

Namn Grumpy Flag Grumpy Flag
ID bbljbjohmddadkbdnplacilnkjiggkoi
Officiell webbadress https://chromewebstore.google.com/detail/grumpy-flag/bbljbjohmddadkbdnplacilnkjiggkoi
Beskrivning Shows the country name when hovering a flag emoji on facebook
Filstorlek 5.61 KB
Antal Installationer 38
Aktuell Version 0.01
Senast Uppdaterad 2018-11-07
Publiceringsdatum 2018-11-07
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare m.fawzy.linux
Betalningssätt free
Tilläggswebbplats https://github.com/foozee/grumpyFlag
Stödda Språk 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"
            ]
        }
    ]
}