Arabic Romanizer
Convert Arabic text to English script
Arabic Romanizer란 무엇입니까?
Arabic Romanizer은(는) Gokul NC에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Convert Arabic text to English script"입니다.
확장 프로그램 스크린샷
Arabic Romanizer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
# 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
확장 프로그램 기본 정보
이름 | Arabic Romanizer |
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:\/\/*\/*" ] } |