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”。
扩展截图
下载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
扩展基本信息
名称 | |
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" ] } ] } |