rtlAirtable
An extension to add RTL support for AirTable.com
ما هو rtlAirtable؟
rtlAirtable هو إضافة Chrome تم تطويرها بواسطة basilhaffar، والميزة الرئيسية لها هي "An extension to add RTL support for AirTable.com".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة rtlAirtable
قم بتنزيل ملفات الامتداد rtlAirtable بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | rtlAirtable |
ID | icahgdmgclkaefekamnnjhpgpphjlmib |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/rtlairtable/icahgdmgclkaefekamnnjhpgpphjlmib |
الوصف | An extension to add RTL support for AirTable.com |
حجم الملف | 37.33 KB |
عدد التثبيتات | 82 |
النسخة الحالية | 2.0 |
آخر تحديث | 2022-05-17 |
تاريخ النشر | 2022-05-05 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | basilhaffar |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | 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" } } |