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" } } |