RtL Fixer

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

Was ist RtL Fixer?

RtL Fixer ist eine Chrome-Erweiterung, die von https://beesworks.net entwickelt wurde, und ihr Hauptmerkmal ist "Fix the RTL languages sentences when mixed with LTR words on Youtube, linkedin, and Github".

Erweiterungsscreenshots

screenshot

RtL Fixer-Erweiterungs-CRX-Datei herunterladen

Laden Sie RtL Fixer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name RtL Fixer RtL Fixer
ID mkeclhaiiffmeeokkomoameekkpiiecf
Offizielle URL https://chromewebstore.google.com/detail/rtl-fixer/mkeclhaiiffmeeokkomoameekkpiiecf
Beschreibung Fix the RTL languages sentences when mixed with LTR words on Youtube, linkedin, and Github
Dateigröße 388 KB
Installationsanzahl 1,547
Aktuelle Version 2.0.2
Letztes Update 2020-03-05
Veröffentlichungsdatum 2020-03-04
Bewertung 4.75/5 Insgesamt 53 Bewertungen
Entwickler https://beesworks.net
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}