Notion RTL

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

Was ist Notion RTL?

Notion RTL ist eine Chrome-Erweiterung, die von Omar Bahareth entwickelt wurde, und ihr Hauptmerkmal ist "An extension to add RTL support for https://notion.so".

Erweiterungsscreenshots

screenshot

Notion RTL-Erweiterungs-CRX-Datei herunterladen

Laden Sie Notion RTL-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Notion RTL Notion RTL
ID fflggojmgaedcocmholcdicoedgaabib
Offizielle URL https://chrome.google.com/webstore/detail/notion-rtl/fflggojmgaedcocmholcdicoedgaabib
Beschreibung An extension to add RTL support for https://notion.so
Dateigröße 10.04 KB
Installationsanzahl 6,523
Aktuelle Version 1.4.0
Letztes Update 2022-04-06
Veröffentlichungsdatum 2020-01-04
Bewertung 4.64/5 Insgesamt 59 Bewertungen
Entwickler Omar Bahareth
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/obahareth/notion-rtl
Hilfeseite URL https://github.com/obahareth/notion-rtl
Unterstützte Sprachen 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"
    }
}