Indic-En
Convert Malayalam, Hindi, Kannada webpages to Manglish, Hinglish, Kanglish.
Indic-En là gì?
Indic-En là một tiện ích mở rộng Chrome được phát triển bởi https://subinsb.com, và tính năng chính của nó là "Convert Malayalam, Hindi, Kannada webpages to Manglish, Hinglish, Kanglish.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Indic-En
Tải xuống các tệp mở rộng Indic-En dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Indic-En |
ID | fbbhbgpgjfjdncnealckbfdmieafpgon |
URL Chính Thức | https://chromewebstore.google.com/detail/indic-en/fbbhbgpgjfjdncnealckbfdmieafpgon |
Mô tả | Convert Malayalam, Hindi, Kannada webpages to Manglish, Hinglish, Kanglish. |
Kích Thước Tệp | 49.7 KB |
Số Lần Cài Đặt | 293 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2020-04-21 |
Ngày Phát Hành | 2020-04-20 |
Đánh Giá | 4.20/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | https://subinsb.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://subinsb.com/indicen |
URL Trang Trợ Giúp | https://subinsb.com/indicen |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |