ChatGPT RTL

ChatGPT auto right-to-left alignments. Supports Arabic, Persian, Hebrew, and more.

Co to jest ChatGPT RTL?

ChatGPT RTL to rozszerzenie Chrome opracowane przez https://gil-hanan.com, a jego główną funkcją jest „ChatGPT auto right-to-left alignments. Supports Arabic, Persian, Hebrew, and more.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia ChatGPT RTL

Pobierz pliki rozszerzeń ChatGPT RTL w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        An open-source plugin that automatically identifies right-to-left paragraphs and adjusts and arranges the text in real-time.

⭐️ Features ⭐️
📝 Automatically identifies RTL paragraphs and adjusts the direction in real-time.
⚙️ User-friendly settings popup for configuring the enabling functionality.
🌍 Supports the following RTL languages: Arabic, Persian, Hebrew, and more.

💡 How to use 💡
1. Install this extension.
2. Open ChatGPT discussion.
3. Enjoy chatting with RTL support!

Thank you! 🙏                    

Podstawowe informacje o rozszerzeniu

Nazwa ChatGPT RTL ChatGPT RTL
ID nabcbpmmefiigmjpopfciegmlgihkofd
Oficjalny URL https://chromewebstore.google.com/detail/chatgpt-rtl/nabcbpmmefiigmjpopfciegmlgihkofd
Opis ChatGPT auto right-to-left alignments. Supports Arabic, Persian, Hebrew, and more.
Rozmiar pliku 66.79 KB
Liczba instalacji 2,713
Aktualna Wersja 1.9
Ostatnia Aktualizacja 2023-11-28
Data Publikacji 2023-07-19
Ocena 5.00/5 Łącznie 20 Oceny
Deweloper https://gil-hanan.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://gil-hanan.com/projects/chat-gpt-rtl
Adres URL Strony Pomocy https://github.com/gilhanan/chat-gpt-rtl/issues
Obsługiwane Języki en,iw,ar
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT RTL",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "manifest_version": 3,
    "version": "1.9",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "css": [
                "content\/content.css"
            ],
            "js": [
                "content\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}