Better Notion RTL

Better Notion RTL

Aligns the text in the correct way on https://notion.so .

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "BetterNotionRTL",
  "version": "1.0",
  "description": "Aligns the text in the correct way on https://notion.so",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "*://*.notion.so/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.notion.so/*"
      ],
      "js": [
        "index.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "48": "icons/betterrtlicon.png"
  }
}