Accent Mark Helper

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

Accent Mark Helper क्या है?

Accent Mark Helper tonyanzianodev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension that helps a user type letters with accent marks."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Accent Mark Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    }
}