Accent Mark Helper

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

Co to jest Accent Mark Helper?

Accent Mark Helper to rozszerzenie Chrome opracowane przez tonyanzianodev, a jego główną funkcją jest „A simple extension that helps a user type letters with accent marks.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Accent Mark Helper

Pobierz pliki rozszerzeń Accent Mark Helper 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Accent Mark Helper Accent Mark Helper
ID agiajnicdlbknfiicjgbadnokajhogoj
Oficjalny URL https://chromewebstore.google.com/detail/accent-mark-helper/agiajnicdlbknfiicjgbadnokajhogoj
Opis A simple extension that helps a user type letters with accent marks.
Rozmiar pliku 9.39 KB
Liczba instalacji 98
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2023-04-07
Data Publikacji 2022-12-10
Deweloper tonyanzianodev
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": "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"
    }
}