Flagmoji

Replace regional indicators with images of flags

Wat is Flagmoji?

Flagmoji is een Chrome-extensie ontwikkeld door lecaominhhn, en de belangrijkste functie is "Replace regional indicators with images of flags".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Flagmoji

Download Flagmoji-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Flagmoji Flagmoji
ID bnnhpohpnamnjhajbkgpmblleljodlhd
Officiële URL https://chromewebstore.google.com/detail/flagmoji/bnnhpohpnamnjhajbkgpmblleljodlhd
Beschrijving Replace regional indicators with images of flags
Bestandsgrootte 18.14 KB
Aantal Installaties 978
Huidige Versie 1.1.1
Laatst Bijgewerkt 2023-07-10
Publicatiedatum 2022-01-13
Beoordeling 4.50/5 Totaal 10 Beoordelingen
Ontwikkelaar lecaominhhn
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}