Grumpy Flag

Shows the country name when hovering a flag emoji on facebook

Grumpy Flagとは何ですか?

Grumpy Flagはm.fawzy.linuxによって開発されたChromeの拡張機能で、その主な機能は「Shows the country name when hovering a flag emoji on facebook」です。

拡張機能のスクリーンショット

screenshot

Grumpy Flag拡張機能のCRXファイルをダウンロード

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