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”。
扩展截图
下载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
扩展基本信息
名称 | |
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" } } |