LTR-RTL

This extension allows you to change web page text direction.

O que é LTR-RTL?

LTR-RTL é uma extensão do Chrome desenvolvida por DC, e sua principal característica é "This extension allows you to change web page text direction.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão LTR-RTL

Baixe arquivos de extensão LTR-RTL 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

                        This extension allows you to change the web page text direction. This is useful when you are viewing right to left text such as Hebrew or Arabic in an application that displays from left to right.

Shortcuts:
Ctrl+Shift+J -- switch to RTL
Ctrl+Shift+E -- switch to LTR

Note 1: If one or both of the shortcuts don't work, it means that something else is mapped to them. Chrome allows you to remap extension shortcuts, and you can remap the shortcuts to something that isn't in use. Alternatively, the extension adds an item to the Chrome right click menu, which you can use to switch text direction instead of the shortcuts.

Note 2: The language direction will only change for HTML elements that don't have a specified language direction.                    

Informações Básicas da Extensão

Nome LTR-RTL LTR-RTL
ID dihficgdollilpfaliclpihepalmdgbb
URL Oficial https://chromewebstore.google.com/detail/ltr-rtl/dihficgdollilpfaliclpihepalmdgbb
Descrição This extension allows you to change web page text direction.
Tamanho do Arquivo 4.09 KB
Contagem de Instalações 12,412
Versão Atual 2.0.1
Última Atualização 2022-05-19
Data de Publicação 2014-11-18
Classificação 4.05/5 Total de 19 Avaliações
Desenvolvedor DC
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "LTR-RTL",
    "description": "This extension allows you to change web page text direction.",
    "version": "2.0.1",
    "commands": {
        "RTL": {
            "suggested_key": {
                "default": "Ctrl+Shift+J",
                "mac": "Command+Shift+J"
            },
            "description": "Enable right to left"
        },
        "LTR": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Enable left to right"
        }
    },
    "permissions": [
        "contextMenus",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "change_dir.js"
    }
}