Notion RTL
An extension to add RTL support for https://notion.so
Что такое Notion RTL?
Notion RTL - это расширение Chrome, разработанное Omar Bahareth, и его основная функция - "An extension to add RTL support for https://notion.so".
Снимки экрана расширения
Скачать файл CRX расширения Notion RTL
Скачайте файлы расширений 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" } } |