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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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"
    }
}