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
官方網址 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"
    }
}