Arabic Romanizer
Convert Arabic text to English script
什么是Arabic Romanizer?
Arabic Romanizer是由Gokul NC开发的Chrome扩展程序,该扩展的主要功能是“Convert Arabic text to English script”。
扩展截图
下载Arabic Romanizer扩展crx文件
下载Arabic Romanizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
# Convert Arabic webpages to English.
Arabic-En: Transliterates webpages in Arabic language to Latin/Roman script. Helpful for people who can understand the language, but cannot read the script or while learning to read in Arabic.
## Features
* Supports romanizing Standard Arabic alphabet (with diacritics)
* 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
## Credits
* Based on Indic-En extension: https://chrome.google.com/webstore/detail/indic-en/fbbhbgpgjfjdncnealckbfdmieafpgon 扩展基本信息
| 名称 | |
| ID | lnpmajkeelelndcfjaaajpppefpjndoe |
| 官方URL | https://chromewebstore.google.com/detail/arabic-romanizer/lnpmajkeelelndcfjaaajpppefpjndoe |
| 简介 | Convert Arabic text to English script |
| 文件大小 | 151 KB |
| 安装次数 | 83 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2022-01-30 |
| 上架时间 | 2022-01-29 |
| 开发者 | Gokul NC |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/GokulNC/Arabic-Romanizer-Web-Extension |
| 帮助页面URL | https://github.com/GokulNC/Arabic-Romanizer-Web-Extension/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Arabic Romanizer",
"version": "1.0.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 Arabic text to English script",
"homepage_url": "https:\/\/github.com\/GokulNC\/Arabic-Romanizer-Web-Extension.git",
"short_name": "Arabic Romanizer",
"permissions": [
"activeTab",
"storage"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"author": "GokulNC",
"minimum_chrome_version": "88",
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"background": {
"service_worker": "service_worker.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
],
"js": [
"js\/contentScript.bundle.js"
],
"css": [
"css\/contentScript.css"
]
}
],
"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": "Arabic-En",
"chrome_style": false
},
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
} | |