RtL Fixer

RtL Fixer

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

Merlin
Additional files are visible only to premium users

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 <[email protected]>",
  "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"
      ]
    }
  ]
}