Arabic Romanizer

Convert Arabic text to English script

Arabic Romanizer là gì?

Arabic Romanizer là một tiện ích mở rộng Chrome được phát triển bởi Gokul NC, và tính năng chính của nó là "Convert Arabic text to English script".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Arabic Romanizer

Tải xuống các tệp mở rộng Arabic Romanizer 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

                        # 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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Arabic Romanizer Arabic Romanizer
ID lnpmajkeelelndcfjaaajpppefpjndoe
URL Chính Thức https://chromewebstore.google.com/detail/arabic-romanizer/lnpmajkeelelndcfjaaajpppefpjndoe
Mô tả Convert Arabic text to English script
Kích Thước Tệp 151 KB
Số Lần Cài Đặt 83
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-01-30
Ngày Phát Hành 2022-01-29
Nhà Phát Triển Gokul NC
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/GokulNC/Arabic-Romanizer-Web-Extension
URL Trang Trợ Giúp https://github.com/GokulNC/Arabic-Romanizer-Web-Extension/issues
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}