Indic-En
Convert Malayalam, Hindi, Kannada webpages to Manglish, Hinglish, Kanglish.
Indic-En क्या है?
Indic-En https://subinsb.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Convert Malayalam, Hindi, Kannada webpages to Manglish, Hinglish, Kanglish."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Indic-En एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 } ] } |