RTL Text Director

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

¿Qué es RTL Text Director?

RTL Text Director es una extensión de Chrome desarrollada por zuhairtaha1, y su función principal es "This extension will automatically detect RTL text and change the direction of the text to RTL.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión RTL Text Director

Descarga archivos de extensión RTL Text Director en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

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

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

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

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

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

Información Básica de la Extensión

Nombre RTL Text Director RTL Text Director
ID bhojfeaocoeikkknhmofogkkokjpjjlh
URL Oficial https://chromewebstore.google.com/detail/rtl-text-director/bhojfeaocoeikkknhmofogkkokjpjjlh
Descripción This extension will automatically detect RTL text and change the direction of the text to RTL.
Tamaño del Archivo 23.39 KB
Cantidad de Instalaciones 29
Versión Actual 0.2
Última Actualización 2023-06-09
Fecha de Publicación 2023-06-05
Calificación 4.29/5 Total de 7 Calificaciones
Desarrollador zuhairtaha1
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://tahasoft.com/
URL de la Página de Ayuda https://tahasoft.com/contact
Idiomas Soportados 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": [
        "*:\/\/*\/*"
    ]
}