Flagmoji

Replace regional indicators with images of flags

Flagmoji là gì?

Flagmoji là một tiện ích mở rộng Chrome được phát triển bởi lecaominhhn, và tính năng chính của nó là "Replace regional indicators with images of flags".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Flagmoji

Tải xuống các tệp mở rộng Flagmoji dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Flagmoji Flagmoji
ID bnnhpohpnamnjhajbkgpmblleljodlhd
URL Chính Thức https://chromewebstore.google.com/detail/flagmoji/bnnhpohpnamnjhajbkgpmblleljodlhd
Mô tả Replace regional indicators with images of flags
Kích Thước Tệp 18.14 KB
Số Lần Cài Đặt 978
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2023-07-10
Ngày Phát Hành 2022-01-13
Đánh Giá 4.50/5 Tổng số 10 Đánh Giá
Nhà Phát Triển lecaominhhn
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}