Notion RTL

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

Notion RTL क्या है?

Notion RTL Omar Bahareth द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to add RTL support for https://notion.so"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Notion RTL एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ URL 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"
    }
}