Notion RTL

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

Notion RTL란 무엇입니까?

Notion RTL은(는) Omar Bahareth에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to add RTL support for https://notion.so"입니다.

확장 프로그램 스크린샷

screenshot

Notion RTL 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}