Notion RTL

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

Wat is Notion RTL?

Notion RTL is een Chrome-extensie ontwikkeld door Omar Bahareth, en de belangrijkste functie is "An extension to add RTL support for https://notion.so".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Notion RTL

Download Notion RTL-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Notion RTL Notion RTL
ID fflggojmgaedcocmholcdicoedgaabib
Officiële URL https://chrome.google.com/webstore/detail/notion-rtl/fflggojmgaedcocmholcdicoedgaabib
Beschrijving An extension to add RTL support for https://notion.so
Bestandsgrootte 10.04 KB
Aantal Installaties 6,523
Huidige Versie 1.4.0
Laatst Bijgewerkt 2022-04-06
Publicatiedatum 2020-01-04
Beoordeling 4.64/5 Totaal 59 Beoordelingen
Ontwikkelaar Omar Bahareth
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/obahareth/notion-rtl
Help Pagina-URL https://github.com/obahareth/notion-rtl
Ondersteunde Talen 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"
    }
}