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ファイルをダウンロード

Notion RTL拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}