Airtable RTL Cells

Airtable RTL Cells

Make all Airtable Cells RTL

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Airtable RTL Cells",
  "version": "1.1",
  "description": "Make all Airtable Cells RTL",
  "host_permissions": [
    "*://*.airtable.com/*"
  ],
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.airtable.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}