Accent Mark Helper
A simple extension that helps a user type letters with accent marks.
What is Accent Mark Helper?
Accent Mark Helper is a Chrome extension developed by tonyanzianodev, and its main feature is "A simple extension that helps a user type letters with accent marks.".
Extension Screenshots
Download Accent Mark Helper Extension CRX File
Download Accent Mark Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Accent Mark Helper |
ID | agiajnicdlbknfiicjgbadnokajhogoj |
Official URL | https://chromewebstore.google.com/detail/accent-mark-helper/agiajnicdlbknfiicjgbadnokajhogoj |
Description | A simple extension that helps a user type letters with accent marks. |
File Size | 9.39 KB |
Installation Count | 98 |
Current Version | 1.0.1 |
Last Updated | 2023-04-07 |
Publish Date | 2022-12-10 |
Developer | tonyanzianodev |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |