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
Eメール [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"
    }
}