Flagmoji

Replace regional indicators with images of flags

Co to jest Flagmoji?

Flagmoji to rozszerzenie Chrome opracowane przez lecaominhhn, a jego główną funkcją jest „Replace regional indicators with images of flags”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Flagmoji

Pobierz pliki rozszerzeń Flagmoji w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Flagmoji Flagmoji
ID bnnhpohpnamnjhajbkgpmblleljodlhd
Oficjalny URL https://chromewebstore.google.com/detail/flagmoji/bnnhpohpnamnjhajbkgpmblleljodlhd
Opis Replace regional indicators with images of flags
Rozmiar pliku 18.14 KB
Liczba instalacji 978
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2023-07-10
Data Publikacji 2022-01-13
Ocena 4.50/5 Łącznie 10 Oceny
Deweloper lecaominhhn
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}