Flagmoji

Replace regional indicators with images of flags

什么是Flagmoji?

Flagmoji是由lecaominhhn开发的Chrome扩展程序,该扩展的主要功能是“Replace regional indicators with images of flags”。

扩展截图

screenshot
screenshot

下载Flagmoji扩展crx文件

下载Flagmoji扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Replace regional indicators with images of flags

Flag emojis aren't supported on Windows, so I created this extension to replace them with actual flag images

Source code: https://github.com/idkhow2type/Flagmoji

Credits:
- flagpedia.net for the flag images                    

扩展基本信息

名称 Flagmoji Flagmoji
ID bnnhpohpnamnjhajbkgpmblleljodlhd
官方URL https://chromewebstore.google.com/detail/flagmoji/bnnhpohpnamnjhajbkgpmblleljodlhd
简介 Replace regional indicators with images of flags
文件大小 18.14 KB
安装次数 978
当前版本 1.1.1
更新时间 2023-07-10
上架时间 2022-01-13
评分 4.50/5 共10次评分
开发者 lecaominhhn
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Flagmoji",
    "description": "Replace regional indicators with images of flags",
    "version": "1.1.1",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "icons": {
        "200": "icon.png"
    }
}