MUA Web Unicode Converter
This extension will check web content and convert to Unicode encoded text if they are Zawgyi.
什么是MUA Web Unicode Converter?
MUA Web Unicode Converter是由https://sanlinng.blogspot.com开发的Chrome扩展程序,该扩展的主要功能是“This extension will check web content and convert to Unicode encoded text if they are Zawgyi.”。
扩展截图
下载MUA Web Unicode Converter扩展crx文件
下载MUA Web Unicode Converter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
MUA Web Unicode Converter is en extension for Myanmar Unicode User. The main functions are - * Detect Zawgyi encoded text and convert automatically to Unicode encoded text * Fix Zawgyi font embedded web site to display Unicode text correctly. This extension is freeware and source code can be found here. https://github.com/sanlinnaing/MUA-Web-Unicode-Converter" This extension - based on Myanmar Font Tagger - used Parabaik converter script. From Version 1.3 Mutation Observer is used. It is the effort of Ko Thant Thet Khin Zaw. Thanks Ko Thant Thet. Contributors - Ko Thant Thet Khin Zaw - Ko Aung Myo Kyaw - Ko Thixpin - Me (San Lin Naing) UPDATE v1.22 - Fixed for Facebook Page New UI messenger not converted issue. UPDATE v1.21 - MUA new logo changed because old logo had trademark issue. [UPDATE v1.20] - Fixed for detection of Encoding Facebook Read More tag. [UPDATE v1.19] - Added temp workaround fix for GMail not rendering with CSS letter-spacing properties. [UPDATE v1.18] - Fixed ZWSP character issues in Myanmar text. [UPDATE v1.17] - Fixed logic error - Added Google+ font verification - Improve UI [UPDATE v1.16] - Performance improve - Bugs fixed [UPDATE v1.15] - Added new great feature for text to image conversion when you want your post visible to all. Thanks to Sir. Thixpin. [UPDATE v1.14] - Added new feature for easy enable/disable features by Ko Thixpin. [UPDATE v1.13] - Removed issues of zawgyi noti - Added new feature for notifying Zawgyi Content. + Fixed some issues [UPDATE v1.12] + Added new feature for notifying Zawgyi content. - Fixed issues for some font embedded website. + Added more auto correction rules. [UPDATE v1.11] - Fixed issues for wrong detection of some weak patterns. [UPDATE v1.10] - Fixed issues for wrong detection on Mon word. - Fixed on css style injection issues. (fix for Facebook when post are long) + added auto correction rule for Kyawa-note (Me) + improved the Zawgyi detection algorithm. [UPDATE v1.9] - Fixed some converter page conflict -
扩展基本信息
| 名称 | |
| ID | jnmdbgnckbbmblkbammnfagdmikchhnp |
| 官方URL | https://chromewebstore.google.com/detail/mua-web-unicode-converter/jnmdbgnckbbmblkbammnfagdmikchhnp |
| 简介 | This extension will check web content and convert to Unicode encoded text if they are Zawgyi. |
| 文件大小 | 496 KB |
| 安装次数 | 68,686 |
| 当前版本 | 1.22 |
| 更新时间 | 2020-10-06 |
| 上架时间 | 2019-10-07 |
| 评分 | 4.68/5 共140次评分 |
| 开发者 | https://sanlinng.blogspot.com |
| 电子邮箱 | sanlinnaing2008@gmail.com |
| 付费类型 | free |
| 帮助页面URL | http://www.facebook.com/groups/mmUnicode |
| 隐私政策页面URL | https://www.mmunicode.org/privacy-policy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "MUA Web Unicode Converter",
"description": "This extension will check web content and convert to Unicode encoded text if they are Zawgyi.",
"icons": {
"128": "icon128.png",
"48": "icon48.png"
},
"version": "1.22",
"background": {
"scripts": [
"background.js"
]
},
"options_page": "options.html",
"browser_action": {
"default_icon": {
"19": "icon19.png",
"38": "icon38.png"
},
"default_popup": "popup.html",
"default_title": "Click here!"
},
"content_scripts": [
{
"css": [
"zawgyi.css"
],
"js": [
"parabaik.js",
"converter.js"
],
"matches": [
"*:\/\/*\/*"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"YoeYar-One.ttf",
"pyidaungsu-1-3.ttf"
],
"permissions": [
"activeTab",
"storage"
]
} | |