Notion RTL

An extension to add RTL support for https://notion.so

ما هو Notion RTL؟

Notion RTL هو إضافة Chrome تم تطويرها بواسطة Omar Bahareth، والميزة الرئيسية لها هي "An extension to add RTL support for https://notion.so".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Notion RTL

قم بتنزيل ملفات الامتداد Notion RTL بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        THIS EXTENSION IS NOW DEPRECATED.

Please install Notion Enhancer instead:
https://notion-enhancer.github.io/

Once installed, enable the right to left extension.


------------------------------------------------------------------------------------------------



An extension to add RTL support for https://notion.so
Adds preliminary support for Right-to-left (RTL) on Notion (https://notion.so) as a workaround until Notion natively supports it. This is still the initial version and may behave unexpectedly. (Nothing fancy is happening, just adding a dir="auto" on all top-level blocks)

Supported block types:
- Title
- Text
- Lists
- To do lists

Supported database types:
- Tables
- Galleries
- Boards                    

معلومات أساسية عن التمديد

الاسم Notion RTL Notion RTL
ID fflggojmgaedcocmholcdicoedgaabib
عنوان URL الرسمي https://chrome.google.com/webstore/detail/notion-rtl/fflggojmgaedcocmholcdicoedgaabib
الوصف An extension to add RTL support for https://notion.so
حجم الملف 10.04 KB
عدد التثبيتات 6,523
النسخة الحالية 1.4.0
آخر تحديث 2022-04-06
تاريخ النشر 2020-01-04
تقييم 4.64/5 مجموع تقييمات 59
المطور Omar Bahareth
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/obahareth/notion-rtl
عنوان صفحة المساعدة https://github.com/obahareth/notion-rtl
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion RTL",
    "version": "1.4.0",
    "description": "An extension to add RTL support for https:\/\/notion.so",
    "manifest_version": 2,
    "permissions": [
        "*:\/\/*.notion.so\/*",
        "*:\/\/*.notion.site\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.notion.so\/*",
                "*:\/\/*.notion.site\/*"
            ],
            "js": [
                "src\/index.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "logo\/logo-16.png",
        "32": "logo\/logo-32.png",
        "48": "logo\/logo-48.png",
        "128": "logo\/logo-128.png"
    }
}