LTR-RTL

This extension allows you to change web page text direction.

什么是LTR-RTL?

LTR-RTL是由DC开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to change web page text direction.”。

扩展截图

screenshot

下载LTR-RTL扩展crx文件

下载LTR-RTL扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 LTR-RTL LTR-RTL
ID dihficgdollilpfaliclpihepalmdgbb
官方URL https://chromewebstore.google.com/detail/ltr-rtl/dihficgdollilpfaliclpihepalmdgbb
简介 This extension allows you to change web page text direction.
文件大小 4.09 KB
安装次数 12,412
当前版本 2.0.1
更新时间 2022-05-19
上架时间 2014-11-18
评分 4.05/5 共19次评分
开发者 DC
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}