Linkedin RTL support
Adds multilingual support to linkedin text fields
Cos'è Linkedin RTL support?
Linkedin RTL support è un'estensione di Chrome sviluppata da Elad Mizrahi, e la sua funzione principale è "Adds multilingual support to linkedin text fields".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Linkedin RTL support
Scarica i file di estensione Linkedin RTL support 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
The extension searches for text fields in LinkedIn and adds auto direction to the field, and aligns the text direction to the start of the line. And make sure that if you have Grammarly it will not block your text when RTL.
Informazioni di Base sull'Estensione
Nome | Linkedin RTL support |
ID | bkeinidnmmffimffcmdoheeciapelpad |
URL Ufficiale | https://chromewebstore.google.com/detail/linkedin-rtl-support/bkeinidnmmffimffcmdoheeciapelpad |
Descrizione | Adds multilingual support to linkedin text fields |
Dimensione del File | 12.99 KB |
Conteggio Installazioni | 51 |
Versione Corrente | 0.3.0 |
Ultimo Aggiornamento | 2023-04-09 |
Data di Pubblicazione | 2023-04-08 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Elad Mizrahi |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Linkedin RTL support", "version": "0.3.0", "description": "Adds multilingual support to linkedin text fields", "icons": { "16": "images\/icon_16.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png", "256": "images\/icon_256.png", "512": "images\/icon_512.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.linkedin.com\/*" ], "js": [ "index.js" ], "css": [ "index.css" ], "run_at": "document_end" } ], "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |