Accent Mark Helper
A simple extension that helps a user type letters with accent marks.
Vad är Accent Mark Helper?
Accent Mark Helper är en Chrome-tillägg utvecklad av tonyanzianodev, och dess huvudfunktion är "A simple extension that helps a user type letters with accent marks.".
Tilläggsskärmbilder
Ladda ner Accent Mark Helper-förlängningens CRX-fil
Ladda ner Accent Mark Helper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Accent Mark Helper |
ID | agiajnicdlbknfiicjgbadnokajhogoj |
Officiell webbadress | https://chromewebstore.google.com/detail/accent-mark-helper/agiajnicdlbknfiicjgbadnokajhogoj |
Beskrivning | A simple extension that helps a user type letters with accent marks. |
Filstorlek | 9.39 KB |
Antal Installationer | 98 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2023-04-07 |
Publiceringsdatum | 2022-12-10 |
Utvecklare | tonyanzianodev |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |