Indic Type

A chrome plugin to type in any language!

Indic Type란 무엇입니까?

Indic Type은(는) burhanuday에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome plugin to type in any language!"입니다.

확장 프로그램 스크린샷

screenshot

Indic Type 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Indic Type Indic Type
ID pogipgjihjelgobckfimnjihpleninda
공식 URL https://chromewebstore.google.com/detail/indic-type/pogipgjihjelgobckfimnjihpleninda
설명 A chrome plugin to type in any language!
파일 크기 33.28 KB
설치 횟수 549
현재 버전 0.1.2
최근 업데이트 2021-09-28
출시 날짜 2021-09-28
평점 5.00/5 총 2 개의 평점
개발자 burhanuday
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/burhanuday/indic-type-chrome-extension
도움말 페이지 URL https://github.com/burhanuday/indic-type-chrome-extension/issues
지원되는 언어 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"
    }
}