Accent Mark Helper

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

Accent Mark Helperとは何ですか?

Accent Mark Helperはtonyanzianodevによって開発されたChromeの拡張機能で、その主な機能は「A simple extension that helps a user type letters with accent marks.」です。

拡張機能のスクリーンショット

screenshot

Accent Mark Helper拡張機能のCRXファイルをダウンロード

Accent Mark Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Accent Mark Helper Accent Mark Helper
ID agiajnicdlbknfiicjgbadnokajhogoj
公式URL https://chromewebstore.google.com/detail/accent-mark-helper/agiajnicdlbknfiicjgbadnokajhogoj
説明 A simple extension that helps a user type letters with accent marks.
ファイルサイズ 9.39 KB
インストール数 98
現在のバージョン 1.0.1
最終更新日 2023-04-07
公開日 2022-12-10
開発者 tonyanzianodev
Eメール [email protected]
支払い方法 free
対応言語 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"
    }
}