Indic Type

A chrome plugin to type in any language!

¿Qué es Indic Type?

Indic Type es una extensión de Chrome desarrollada por burhanuday, y su función principal es "A chrome plugin to type in any language!".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Indic Type

Descarga archivos de extensión Indic Type en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Have you ever faced the issue when you want to type in a regional language but all you have is a standard English keyboard? Indic Type solves this problem for you by enabling transliteration for your standard English keyboard. Now type in more languages without having to worry about learning to type on a non english keyboard

Indic Type enables you to type in 30+ supported languages anywhere! You words get automatically replaced with the words from selected language. It's not simple translation. Instead, Indic Type does something referred to as transliteration which uses the phonetic sound of the word rather and changes the script in which it is written

Supported languages:
Amharic, Arabic, Bangla, Belarusian, Bulgarian, Chinese (Hong Kong), Chinese (Simplified), Chinese (Traditional), French, German, Greek, Gujarati, Hebrew, Hindi, Italian, Japanese, Kannada, Malayalam, Marathi, Nepali, Odia, Persian, Portuguese (Brazil), Punjabi, Russian, Sanskrit, Serbian, Sinhala, Spanish, Tamil, Telugu, Tigrinya, Ukrainian, Urdu, Vietnamese

This extension is still in beta! Report any bugs or suggestions to the open source GitHub repo:
https://github.com/burhanuday/indic-type-chrome-extension                    

Información Básica de la Extensión

Nombre Indic Type Indic Type
ID pogipgjihjelgobckfimnjihpleninda
URL Oficial https://chromewebstore.google.com/detail/indic-type/pogipgjihjelgobckfimnjihpleninda
Descripción A chrome plugin to type in any language!
Tamaño del Archivo 33.28 KB
Cantidad de Instalaciones 549
Versión Actual 0.1.2
Última Actualización 2021-09-28
Fecha de Publicación 2021-09-28
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador burhanuday
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/burhanuday/indic-type-chrome-extension
URL de la Página de Ayuda https://github.com/burhanuday/indic-type-chrome-extension/issues
Idiomas Soportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Indic Type",
    "description": "A chrome plugin to type in any language!",
    "version": "0.1.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "src\/js\/inject.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                ".\/src\/js\/content-script.js"
            ],
            "css": [
                ".\/src\/styles\/suggestions-box.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "src\/assets\/images\/logo_16x16.png",
            "32": "src\/assets\/images\/logo_32x32.png",
            "48": "src\/assets\/images\/logo_48x48.png",
            "128": "src\/assets\/images\/logo_144x144.png"
        }
    },
    "icons": {
        "16": "src\/assets\/images\/logo_16x16.png",
        "32": "src\/assets\/images\/logo_32x32.png",
        "48": "src\/assets\/images\/logo_48x48.png",
        "128": "src\/assets\/images\/logo_144x144.png"
    }
}