Linkedin RTL support

Adds multilingual support to linkedin text fields

Что такое Linkedin RTL support?

Linkedin RTL support - это расширение Chrome, разработанное Elad Mizrahi, и его основная функция - "Adds multilingual support to linkedin text fields".

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

screenshot
screenshot

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

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

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

                        The extension searches for text fields in LinkedIn and adds auto direction to the field, and aligns the text direction to the start of the line.
And make sure that if you have Grammarly it will not block your text when RTL.                    

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

Название Linkedin RTL support Linkedin RTL support
ID bkeinidnmmffimffcmdoheeciapelpad
Официальный URL https://chromewebstore.google.com/detail/linkedin-rtl-support/bkeinidnmmffimffcmdoheeciapelpad
Описание Adds multilingual support to linkedin text fields
Размер файла 12.99 KB
Количество установок 51
Текущая Версия 0.3.0
Последнее Обновление 2023-04-09
Дата публикации 2023-04-08
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Elad Mizrahi
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Linkedin RTL support",
    "version": "0.3.0",
    "description": "Adds multilingual support to linkedin text fields",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png",
        "256": "images\/icon_256.png",
        "512": "images\/icon_512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "index.js"
            ],
            "css": [
                "index.css"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}