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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}