Country Flag Fixer

Replaces mysterious country codes automatically with the corresponding flag. The solution for Chromium users on Windows!

Was ist Country Flag Fixer?

Country Flag Fixer ist eine Chrome-Erweiterung, die von https://countryflagfixer.com entwickelt wurde, und ihr Hauptmerkmal ist "Replaces mysterious country codes automatically with the corresponding flag. The solution for Chromium users on Windows!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Country Flag Fixer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Country Flag Fixer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Currently, Chromium users (using Chrome or Microsoft Edge) on Windows are not able to see the flag emoji's. A country code is shown instead. This extention will replace those abbreviations with its corresponding flag using a special font.

This extention uses the Twemoji Country Flags font, which is based on Twemoji (licensed under CC BY-ND 2.0).

Icon created by turkkub - Flaticon                    

Grundlegende Informationen zur Erweiterung

Name Country Flag Fixer Country Flag Fixer
ID jhcpefjbhmbkgjgipkhndplfbhdecijh
Offizielle URL https://chromewebstore.google.com/detail/country-flag-fixer/jhcpefjbhmbkgjgipkhndplfbhdecijh
Beschreibung Replaces mysterious country codes automatically with the corresponding flag. The solution for Chromium users on Windows!
Dateigröße 132 KB
Installationsanzahl 5,106
Aktuelle Version 1.2.5
Letztes Update 2023-12-25
Veröffentlichungsdatum 2022-06-22
Bewertung 4.55/5 Insgesamt 44 Bewertungen
Entwickler https://countryflagfixer.com
E-Mail 110matthijs@gmail.com
Zahlungsart free
Erweiterungswebsite https://github.com/matthijs110/chromium-country-flags
Hilfeseite URL https://github.com/matthijs110/chromium-country-flags/issues
Unterstützte Sprachen id,de,en,en-GB,fr,nl,no,vi,tr,da,et,es,es-419,it,lv,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,bg,ru,uk,iw,hi,ar,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Country Flag Fixer",
    "default_locale": "en",
    "description": "__MSG_extDesc__",
    "version": "1.2.5",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_head.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "assets\/TwemojiCountryFlags.woff2"
            ]
        }
    ],
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    }
}