RtL Fixer

Fix the RTL languages sentences when mixed with LTR words on Youtube, linkedin, and Github

Что такое RtL Fixer?

RtL Fixer - это расширение Chrome, разработанное https://beesworks.net, и его основная функция - "Fix the RTL languages sentences when mixed with LTR words on Youtube, linkedin, and Github".

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

screenshot

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

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

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

                        Fixing the issue of the mis alignment if you write sometext in any RTL language mixed with any LTR other language, the alignment will be messed up, check the samples before and after.

this extension will reply to who are searching for: "fix RTL direction on youtube or linkedin or Github"

To contact the developer or send suggestions, please send them to:
[email protected]

and follow me on twitter: @med7atdawoud                    

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

Название RtL Fixer RtL Fixer
ID mkeclhaiiffmeeokkomoameekkpiiecf
Официальный URL https://chromewebstore.google.com/detail/rtl-fixer/mkeclhaiiffmeeokkomoameekkpiiecf
Описание Fix the RTL languages sentences when mixed with LTR words on Youtube, linkedin, and Github
Размер файла 388 KB
Количество установок 1,547
Текущая Версия 2.0.2
Последнее Обновление 2020-03-05
Дата публикации 2020-03-04
Рейтинг 4.75/5 Всего 53 оценок
Разработчик https://beesworks.net
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RtL Fixer",
    "version": "2.0.2",
    "description": "Fix the RTL languages sentences when mixed with LTR words on Youtube, linkedin, and Github",
    "page_action": {
        "default_icon": "images\/new\/icon.png",
        "default_title": "RtL Fixer"
    },
    "author": "Medhat Dawoud ",
    "icons": {
        "16": "images\/new\/icon-logo-16.png",
        "48": "images\/new\/icon-logo-48.png",
        "128": "images\/new\/icon-logo-128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.github.com\/*",
                "*:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "dist\/bundle.js"
            ],
            "css": [
                "scripts\/index.css"
            ]
        }
    ]
}