rtlAirtable

An extension to add RTL support for AirTable.com

Cos'è rtlAirtable?

rtlAirtable è un'estensione di Chrome sviluppata da basilhaffar, e la sua funzione principale è "An extension to add RTL support for AirTable.com".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione rtlAirtable

Scarica i file di estensione rtlAirtable in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This is still the initial version, it's a very simple, just adding a "direction: rtl" to specific classes in CSS ) , No need to collect any data
If you use (airtable) and write in Arabic or other RTL languages, this extension will make you able to read and write texts in the right direction.                    

Informazioni di Base sull'Estensione

Nome rtlAirtable rtlAirtable
ID icahgdmgclkaefekamnnjhpgpphjlmib
URL Ufficiale https://chromewebstore.google.com/detail/rtlairtable/icahgdmgclkaefekamnnjhpgpphjlmib
Descrizione An extension to add RTL support for AirTable.com
Dimensione del File 37.33 KB
Conteggio Installazioni 82
Versione Corrente 2.0
Ultimo Aggiornamento 2022-05-17
Data di Pubblicazione 2022-05-05
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore basilhaffar
Email [email protected]
Tipo di Pagamento free
Lingue Supportate ar
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "rtlAirtable",
    "version": "2.0",
    "description": "An extension to add RTL support for AirTable.com",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.airtable.com\/*"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.airtable.com\/*"
    ],
    "icons": {
        "16": "\/images\/rtlairtable16.png",
        "32": "\/images\/rtlairtable32.png",
        "48": "\/images\/rtlairtable48.png",
        "128": "\/images\/rtlairtable128.png"
    }
}