Flagmoji

Replace regional indicators with images of flags

Qu'est-ce que Flagmoji ?

Flagmoji est une extension Chrome développée par lecaominhhn, et sa fonction principale est "Replace regional indicators with images of flags".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Flagmoji

Téléchargez les fichiers d'extension Flagmoji au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Flagmoji Flagmoji
ID bnnhpohpnamnjhajbkgpmblleljodlhd
URL Officiel https://chromewebstore.google.com/detail/flagmoji/bnnhpohpnamnjhajbkgpmblleljodlhd
Description Replace regional indicators with images of flags
Taille du Fichier 18.14 KB
Nombre d'Installations 978
Version Actuelle 1.1.1
Dernière Mise à Jour 2023-07-10
Date de Publication 2022-01-13
Évaluation 4.50/5 Total 10 Évaluations
Développeur lecaominhhn
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}