Notion RTL
An extension to add RTL support for https://notion.so
Notion RTL là gì?
Notion RTL là một tiện ích mở rộng Chrome được phát triển bởi Omar Bahareth, và tính năng chính của nó là "An extension to add RTL support for https://notion.so".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Notion RTL
Tải xuống các tệp mở rộng Notion RTL dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | fflggojmgaedcocmholcdicoedgaabib |
URL Chính Thức | https://chrome.google.com/webstore/detail/notion-rtl/fflggojmgaedcocmholcdicoedgaabib |
Mô tả | An extension to add RTL support for https://notion.so |
Kích Thước Tệp | 10.04 KB |
Số Lần Cài Đặt | 6,523 |
Phiên Bản Hiện Tại | 1.4.0 |
Cập Nhật Lần Cuối | 2022-04-06 |
Ngày Phát Hành | 2020-01-04 |
Đánh Giá | 4.64/5 Tổng số 59 Đánh Giá |
Nhà Phát Triển | Omar Bahareth |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/obahareth/notion-rtl |
URL Trang Trợ Giúp | https://github.com/obahareth/notion-rtl |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |