rtlAirtable

An extension to add RTL support for AirTable.com

Что такое rtlAirtable?

rtlAirtable - это расширение Chrome, разработанное basilhaffar, и его основная функция - "An extension to add RTL support for AirTable.com".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения rtlAirtable

Скачайте файлы расширений rtlAirtable в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This is still the initial version, it's a very simple, just adding a "direction: rtl" to specific classes in CSS ) , No need to collect any data
If you use (airtable) and write in Arabic or other RTL languages, this extension will make you able to read and write texts in the right direction.                    

Основная информация о расширении

Название rtlAirtable rtlAirtable
ID icahgdmgclkaefekamnnjhpgpphjlmib
Официальный URL https://chromewebstore.google.com/detail/rtlairtable/icahgdmgclkaefekamnnjhpgpphjlmib
Описание An extension to add RTL support for AirTable.com
Размер файла 37.33 KB
Количество установок 82
Текущая Версия 2.0
Последнее Обновление 2022-05-17
Дата публикации 2022-05-05
Рейтинг 5.00/5 Всего 2 оценок
Разработчик basilhaffar
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки ar
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "rtlAirtable",
    "version": "2.0",
    "description": "An extension to add RTL support for AirTable.com",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.airtable.com\/*"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.airtable.com\/*"
    ],
    "icons": {
        "16": "\/images\/rtlairtable16.png",
        "32": "\/images\/rtlairtable32.png",
        "48": "\/images\/rtlairtable48.png",
        "128": "\/images\/rtlairtable128.png"
    }
}