Notion RTL
An extension to add RTL support for https://notion.so
Qu'est-ce que Notion RTL ?
Notion RTL est une extension Chrome développée par Omar Bahareth, et sa fonction principale est "An extension to add RTL support for https://notion.so".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Notion RTL
Téléchargez les fichiers d'extension Notion RTL au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | fflggojmgaedcocmholcdicoedgaabib |
URL Officiel | https://chrome.google.com/webstore/detail/notion-rtl/fflggojmgaedcocmholcdicoedgaabib |
Description | An extension to add RTL support for https://notion.so |
Taille du Fichier | 10.04 KB |
Nombre d'Installations | 6,523 |
Version Actuelle | 1.4.0 |
Dernière Mise à Jour | 2022-04-06 |
Date de Publication | 2020-01-04 |
Évaluation | 4.64/5 Total 59 Évaluations |
Développeur | Omar Bahareth |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/obahareth/notion-rtl |
URL de la Page d'Aide | https://github.com/obahareth/notion-rtl |
Langues Prises en Charge | 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" } } |