Flagmoji

Replace regional indicators with images of flags

ما هو Flagmoji؟

Flagmoji هو إضافة Chrome تم تطويرها بواسطة lecaominhhn، والميزة الرئيسية لها هي "Replace regional indicators with images of flags".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Flagmoji

قم بتنزيل ملفات الامتداد Flagmoji بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    }
}