Notion RTL
An extension to add RTL support for https://notion.so
Cos'è Notion RTL?
Notion RTL è un'estensione di Chrome sviluppata da Omar Bahareth, e la sua funzione principale è "An extension to add RTL support for https://notion.so".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Notion RTL
Scarica i file di estensione Notion RTL in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | fflggojmgaedcocmholcdicoedgaabib |
| URL Ufficiale | https://chrome.google.com/webstore/detail/notion-rtl/fflggojmgaedcocmholcdicoedgaabib |
| Descrizione | An extension to add RTL support for https://notion.so |
| Dimensione del File | 10.04 KB |
| Conteggio Installazioni | 6,523 |
| Versione Corrente | 1.4.0 |
| Ultimo Aggiornamento | 2022-04-06 |
| Data di Pubblicazione | 2020-01-04 |
| Valutazione | 4.64/5 Totale 59 Valutazioni |
| Sviluppatore | Omar Bahareth |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/obahareth/notion-rtl |
| URL della Pagina di Aiuto | https://github.com/obahareth/notion-rtl |
| Lingue Supportate | 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"
}
} | |