RTL Text Director

This extension will automatically detect RTL text and change the direction of the text to RTL.

RTL Text Directorとは何ですか?

RTL Text Directorはzuhairtaha1によって開発されたChromeの拡張機能で、その主な機能は「This extension will automatically detect RTL text and change the direction of the text to RTL.」です。

拡張機能のスクリーンショット

screenshot

RTL Text Director拡張機能のCRXファイルをダウンロード

RTL Text Director拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Correcting the direction of texts that include RTL language so that they become from right to left, all with a single click

تصحيح اتجاه النصوص التي تتضمن اللغة العربية أو مزيج من اللغة العربية ولغة أخرى بحيث يصبح من اليمين إلى اليسار، كل ذلك بنقرة واحدة

تصحيح جهت متونی که شامل زبان فارسی یا ترکیبی از زبان فارسی و زبان دیگر است، به گونه ای که از راست به چپ می شود، تمام این کار با یک کلیک انجام می شود.

תיקון כיוון הטקסטים שמכילים עברית או שילוב של עברית ושפה אחרת כך שהם משמאל לימין, כל זה בלחיצת כפתור אחת.

تصحیح سمت متن جو اردو زبان یا اردو زبان اور کسی دوسری زبان کے مرکب ہوتی ہے تاکہ یہ دائیں سے بائیں ہوجائے، یہ سب کچھ صرف ایک کلک سے.

تصحیح جهت متن هایی که شامل زبان فارسی یا ترکیبی از زبان فارسی و زبان دیگر می شوند تا از راست به چپ باشند، تمام این ها با یک کلیک انجام می شود.                    

拡張機能の基本情報

名前 RTL Text Director RTL Text Director
ID bhojfeaocoeikkknhmofogkkokjpjjlh
公式URL https://chromewebstore.google.com/detail/rtl-text-director/bhojfeaocoeikkknhmofogkkokjpjjlh
説明 This extension will automatically detect RTL text and change the direction of the text to RTL.
ファイルサイズ 23.39 KB
インストール数 29
現在のバージョン 0.2
最終更新日 2023-06-09
公開日 2023-06-05
評価 4.29/5 合計 7 レビュー
開発者 zuhairtaha1
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://tahasoft.com/
ヘルプページのURL https://tahasoft.com/contact
対応言語 ar
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RTL Text Director",
    "description": "This extension will automatically detect RTL text and change the direction of the text to RTL.",
    "manifest_version": 3,
    "version": "0.2",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "sw.js"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "content\/script.min.js"
            ],
            "css": [
                "content\/styles.css"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}