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.”。
擴展截圖
下載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.                     擴展基本資訊
| 名稱 |   |  
| ID | agiajnicdlbknfiicjgbadnokajhogoj | 
| 官方網址 | 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 | 
| 電子郵箱 | [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"
    }
}  |  |