Indic-En

Convert Malayalam, Hindi, Kannada webpages to Manglish, Hinglish, Kanglish.

Indic-En란 무엇입니까?

Indic-En은(는) https://subinsb.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Convert Malayalam, Hindi, Kannada webpages to Manglish, Hinglish, Kanglish."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Converts webpages in Indian languages of Malayalam, Hindi and Kannada script to English/Latin/Roman script. Helpful for people who can understand the language, but cannot read the script. Transliterates Malayalam, Hindi & Kannada to Manglish, Hinglish & Kanglish respectively.

# Features

* Supports Malayalam, Hindi & Kannada.
* Auto transliterate page on load
* Overlay on hover on transliterated text to know original text
* Offline [Requires no internet to transliterate]
* Options page has a transliterator tool for manual text

Free & Open Source Software : https://gitlab.com/subins2000/indicen                    

확장 프로그램 기본 정보

이름 Indic-En Indic-En
ID fbbhbgpgjfjdncnealckbfdmieafpgon
공식 URL https://chromewebstore.google.com/detail/indic-en/fbbhbgpgjfjdncnealckbfdmieafpgon
설명 Convert Malayalam, Hindi, Kannada webpages to Manglish, Hinglish, Kanglish.
파일 크기 49.7 KB
설치 횟수 293
현재 버전 2.0
최근 업데이트 2020-04-21
출시 날짜 2020-04-20
평점 4.20/5 총 5 개의 평점
개발자 https://subinsb.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://subinsb.com/indicen
도움말 페이지 URL https://subinsb.com/indicen
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Indic-En",
    "version": "2.0",
    "icons": {
        "16": "assets\/icons\/favicon-16.png",
        "32": "assets\/icons\/favicon-32.png",
        "48": "assets\/icons\/favicon-48.png",
        "128": "assets\/icons\/favicon-128.png"
    },
    "description": "Convert Malayalam, Hindi, Kannada webpages to Manglish, Hinglish, Kanglish.",
    "homepage_url": "https:\/\/subinsb.com\/indicen",
    "short_name": "Indic-En",
    "permissions": [
        "activeTab",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "author": "subins2000",
    "minimum_chrome_version": "49",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/favicon-16.png",
            "32": "assets\/icons\/favicon-32.png",
            "48": "assets\/icons\/favicon-48.png",
            "128": "assets\/icons\/favicon-128.png"
        },
        "default_title": "Indic-En",
        "chrome_style": false
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ],
            "css": [
                "css\/contentStyle.css"
            ],
            "all_frames": true
        }
    ]
}