Notion RTL

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

O que é Notion RTL?

Notion RTL é uma extensão do Chrome desenvolvida por Omar Bahareth, e sua principal característica é "An extension to add RTL support for https://notion.so".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Notion RTL

Baixe arquivos de extensão Notion RTL no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Notion RTL Notion RTL
ID fflggojmgaedcocmholcdicoedgaabib
URL Oficial https://chrome.google.com/webstore/detail/notion-rtl/fflggojmgaedcocmholcdicoedgaabib
Descrição An extension to add RTL support for https://notion.so
Tamanho do Arquivo 10.04 KB
Contagem de Instalações 6,523
Versão Atual 1.4.0
Última Atualização 2022-04-06
Data de Publicação 2020-01-04
Classificação 4.64/5 Total de 59 Avaliações
Desenvolvedor Omar Bahareth
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/obahareth/notion-rtl
URL da Página de Ajuda https://github.com/obahareth/notion-rtl
Idiomas Suportados 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"
    }
}