Grumpy Flag

Shows the country name when hovering a flag emoji on facebook

Was ist Grumpy Flag?

Grumpy Flag ist eine Chrome-Erweiterung, die von m.fawzy.linux entwickelt wurde, und ihr Hauptmerkmal ist "Shows the country name when hovering a flag emoji on facebook".

Erweiterungsscreenshots

screenshot

Grumpy Flag-Erweiterungs-CRX-Datei herunterladen

Laden Sie Grumpy Flag-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        # 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                    

Grundlegende Informationen zur Erweiterung

Name Grumpy Flag Grumpy Flag
ID bbljbjohmddadkbdnplacilnkjiggkoi
Offizielle URL https://chromewebstore.google.com/detail/grumpy-flag/bbljbjohmddadkbdnplacilnkjiggkoi
Beschreibung Shows the country name when hovering a flag emoji on facebook
Dateigröße 5.61 KB
Installationsanzahl 38
Aktuelle Version 0.01
Letztes Update 2018-11-07
Veröffentlichungsdatum 2018-11-07
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler m.fawzy.linux
Zahlungsart free
Erweiterungswebsite https://github.com/foozee/grumpyFlag
Unterstützte Sprachen 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"
            ]
        }
    ]
}