Accent Mark Helper

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

Apa itu Accent Mark Helper?

Accent Mark Helper adalah ekstensi Chrome yang dikembangkan oleh tonyanzianodev, dan fitur utamanya adalah "A simple extension that helps a user type letters with accent marks.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Accent Mark Helper

Unduh file ekstensi Accent Mark Helper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Accent Mark Helper Accent Mark Helper
ID agiajnicdlbknfiicjgbadnokajhogoj
URL Resmi https://chromewebstore.google.com/detail/accent-mark-helper/agiajnicdlbknfiicjgbadnokajhogoj
Deskripsi A simple extension that helps a user type letters with accent marks.
Ukuran File 9.39 KB
Jumlah Instalasi 98
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2023-04-07
Tanggal Publikasi 2022-12-10
Pengembang tonyanzianodev
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}