Linkedin RTL support

Adds multilingual support to linkedin text fields

O que é Linkedin RTL support?

Linkedin RTL support é uma extensão do Chrome desenvolvida por Elad Mizrahi, e sua principal característica é "Adds multilingual support to linkedin text fields".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Linkedin RTL support

Baixe arquivos de extensão Linkedin RTL support no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Linkedin RTL support Linkedin RTL support
ID bkeinidnmmffimffcmdoheeciapelpad
URL Oficial https://chromewebstore.google.com/detail/linkedin-rtl-support/bkeinidnmmffimffcmdoheeciapelpad
Descrição Adds multilingual support to linkedin text fields
Tamanho do Arquivo 12.99 KB
Contagem de Instalações 51
Versão Atual 0.3.0
Última Atualização 2023-04-09
Data de Publicação 2023-04-08
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Elad Mizrahi
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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]"
        }
    }
}