Claude RTL
Claude auto right-to-left alignments. Supports Arabic, Persian, Hebrew, and more.
Что такое Claude RTL?
Claude RTL - это расширение Chrome, разработанное https://gil-hanan.com, и его основная функция - "Claude auto right-to-left alignments. Supports Arabic, Persian, Hebrew, and more.".
Снимки экрана расширения
Скачать файл CRX расширения Claude RTL
Скачайте файлы расширений Claude RTL в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 Claude discussion. 3. Enjoy chatting with RTL support! Thank you! 🙏
Основная информация о расширении
Название | Claude RTL |
ID | bogboalkhfnponhdoflinneddblhdfma |
Официальный URL | https://chromewebstore.google.com/detail/claude-rtl/bogboalkhfnponhdoflinneddblhdfma |
Описание | Claude auto right-to-left alignments. Supports Arabic, Persian, Hebrew, and more. |
Размер файла | 66.45 KB |
Количество установок | 106 |
Текущая Версия | 1.2 |
Последнее Обновление | 2023-11-28 |
Дата публикации | 2023-11-04 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | https://gil-hanan.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://gil-hanan.com/projects/claude-rtl |
URL страницы помощи | https://github.com/gilhanan/claude-rtl/issues |
Поддерживаемые языки | en,iw,ar |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Claude RTL", "description": "__MSG_extensionDescription__", "default_locale": "en", "manifest_version": 3, "version": "1.2", "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:\/\/claude.ai\/*" ], "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" } } |