Accent Mark Helper

A simple extension that helps a user type letters with accent marks.

Cos'è Accent Mark Helper?

Accent Mark Helper è un'estensione di Chrome sviluppata da tonyanzianodev, e la sua funzione principale è "A simple extension that helps a user type letters with accent marks.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Accent Mark Helper

Scarica i file di estensione Accent Mark Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension allows the user to easily type accented characters by typing the un-accented letter followed by a sequence of forward slashes. The extension recognizes the sequence and replaces it with the desired accented letter.

For example, if the user types "a/" it will be converted to "à".

This works very similarly to Babbel.com's accent typing feature.                    

Informazioni di Base sull'Estensione

Nome Accent Mark Helper Accent Mark Helper
ID agiajnicdlbknfiicjgbadnokajhogoj
URL Ufficiale https://chromewebstore.google.com/detail/accent-mark-helper/agiajnicdlbknfiicjgbadnokajhogoj
Descrizione A simple extension that helps a user type letters with accent marks.
Dimensione del File 9.39 KB
Conteggio Installazioni 98
Versione Corrente 1.0.1
Ultimo Aggiornamento 2023-04-07
Data di Pubblicazione 2022-12-10
Sviluppatore tonyanzianodev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Accent Mark Helper",
    "version": "1.0.1",
    "manifest_version": 3,
    "description": "A simple extension that helps a user type letters with accent marks.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "exclude_globs": [
                "https:\/\/*.babbel.com\/*"
            ],
            "js": [
                "src\/keypressListener.js"
            ]
        }
    ],
    "icons": {
        "128": "src\/128x128-icon.png"
    }
}