rtlAirtable

An extension to add RTL support for AirTable.com

Vad är rtlAirtable?

rtlAirtable är en Chrome-tillägg utvecklad av basilhaffar, och dess huvudfunktion är "An extension to add RTL support for AirTable.com".

Tilläggsskärmbilder

screenshot

Ladda ner rtlAirtable-förlängningens CRX-fil

Ladda ner rtlAirtable-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn rtlAirtable rtlAirtable
ID icahgdmgclkaefekamnnjhpgpphjlmib
Officiell webbadress https://chromewebstore.google.com/detail/rtlairtable/icahgdmgclkaefekamnnjhpgpphjlmib
Beskrivning An extension to add RTL support for AirTable.com
Filstorlek 37.33 KB
Antal Installationer 82
Aktuell Version 2.0
Senast Uppdaterad 2022-05-17
Publiceringsdatum 2022-05-05
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare basilhaffar
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}